Keep the original completion order in tests

This commit is contained in:
Kirill Bulatov 2020-12-19 13:18:40 +02:00
parent 5fa078f26f
commit 8c292e3cc5
12 changed files with 199 additions and 200 deletions

View file

@ -265,11 +265,11 @@ impl Test for T {
t<|>
}
"#,
expect![["
ct const TEST_CONST: u16 = \n\
fn fn test()
ta type TestType = \n\
"]],
expect![[r#"
ta type TestType =
ct const TEST_CONST: u16 =
fn fn test()
"#]],
);
}