We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57dd6d3 commit c689419Copy full SHA for c689419
crates/biome_lsp/src/server.tests.rs
@@ -3960,7 +3960,10 @@ async fn did_save_syncs_content_from_text_parameter() -> Result<()> {
3960
// If content was properly updated to "const b=2;",
3961
// formatting should add spaces around = and ;
3962
let edits = edits.context("formatting did not return edits")?;
3963
- assert!(!edits.is_empty(), "Formatting should produce edits for 'const b=2;'");
+ assert!(
3964
+ !edits.is_empty(),
3965
+ "Formatting should produce edits for 'const b=2;'"
3966
+ );
3967
3968
server.close_document().await?;
3969
0 commit comments