Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide_completion/src/tests/expression.rs')
-rw-r--r--crates/ide_completion/src/tests/expression.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/crates/ide_completion/src/tests/expression.rs b/crates/ide_completion/src/tests/expression.rs
index a841605e49..bb8b34b79a 100644
--- a/crates/ide_completion/src/tests/expression.rs
+++ b/crates/ide_completion/src/tests/expression.rs
@@ -61,7 +61,7 @@ fn baz() {
fn function() fn()
sc STATIC
un Union
- ev TupleV(…) (u32)
+ ev TupleV(…) TupleV(u32)
ct CONST
"#]],
)
@@ -171,7 +171,7 @@ impl Unit {
fn function() fn()
sc STATIC
un Union
- ev TupleV(…) (u32)
+ ev TupleV(…) TupleV(u32)
ct CONST
"#]],
);
@@ -200,7 +200,7 @@ impl Unit {
fn function() fn()
sc STATIC
un Union
- ev TupleV(…) (u32)
+ ev TupleV(…) TupleV(u32)
ct CONST
"#]],
);
@@ -543,9 +543,9 @@ fn func() {
}
"#,
expect![[r#"
- ev TupleV(…) (u32)
- ev RecordV {field: u32}
- ev UnitV ()
+ ev TupleV(…) TupleV(u32)
+ ev RecordV {…} RecordV { field: u32 }
+ ev UnitV UnitV
ct ASSOC_CONST const ASSOC_CONST: ()
fn assoc_fn() fn()
ta AssocType type AssocType = ()