Skip to content

Commit

Permalink
chore: fix code action tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Sec-ant committed Mar 31, 2024
1 parent f2b7f0f commit f2880ae
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions crates/biome_lsp/tests/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -935,7 +935,7 @@ async fn pull_quick_fixes() -> Result<()> {
data: None,
});

assert_eq!(res, vec![expected_code_action, expected_suppression_action]);
assert_eq!(res, vec![expected_suppression_action, expected_code_action]);

server.close_document().await?;

Expand Down Expand Up @@ -1265,7 +1265,10 @@ async fn pull_quick_fixes_include_unsafe() -> Result<()> {
data: None,
});

assert_eq!(res, vec![expected_code_action, expected_suppression_action]);
assert_eq!(
res,
vec![expected_suppression_action, expected_code_action,]
);

server.close_document().await?;

Expand Down

0 comments on commit f2880ae

Please sign in to comment.