Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide_completion/src/tests/pattern.rs')
-rw-r--r--crates/ide_completion/src/tests/pattern.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/ide_completion/src/tests/pattern.rs b/crates/ide_completion/src/tests/pattern.rs
index 6dd1b66998..81c45c64cc 100644
--- a/crates/ide_completion/src/tests/pattern.rs
+++ b/crates/ide_completion/src/tests/pattern.rs
@@ -286,11 +286,11 @@ fn func() {
"#,
expect![[r#"
ev TupleV(…) (u32)
- ev RecordV { field: u32 }
+ ev RecordV {field: u32}
ev UnitV ()
- ct ASSOC_CONST const ASSOC_CONST: () = ();
+ ct ASSOC_CONST const ASSOC_CONST: ();
fn assoc_fn() fn()
- ta AssocType type AssocType = ();
+ ta AssocType type AssocType;
"#]],
);
}