Skip to content

Commit c689419

Browse files
[autofix.ci] apply automated fixes
1 parent 57dd6d3 commit c689419

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

crates/biome_lsp/src/server.tests.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3960,7 +3960,10 @@ async fn did_save_syncs_content_from_text_parameter() -> Result<()> {
39603960
// If content was properly updated to "const b=2;",
39613961
// formatting should add spaces around = and ;
39623962
let edits = edits.context("formatting did not return edits")?;
3963-
assert!(!edits.is_empty(), "Formatting should produce edits for 'const b=2;'");
3963+
assert!(
3964+
!edits.is_empty(),
3965+
"Formatting should produce edits for 'const b=2;'"
3966+
);
39643967

39653968
server.close_document().await?;
39663969

0 commit comments

Comments
 (0)