Skip to content

Commit eac2b42

Browse files
committed
Fix formatting
1 parent 36f6f02 commit eac2b42

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

crates/indexing/tests/indexing.rs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ fn well_formed_module() {
6868
writeln!(snapshot, "eq: {:?}", eq).unwrap();
6969
writeln!(snapshot, "eq_int: {:?}", eq_int).unwrap();
7070
writeln!(snapshot, "identity: {:?}", identity).unwrap();
71-
writeln!(snapshot, "identity_int: {:?}", identity_int).unwrap();
71+
writeln!(snapshot, "identity_int: {:?}", identity_int).unwrap();
7272
writeln!(snapshot, "prim_eq_int: {:?}", prim_eq_int).unwrap();
7373
writeln!(snapshot, "functor: {:?}", functor).unwrap();
7474
writeln!(snapshot, "eq_identity: {:?}", eq_identity).unwrap();
@@ -171,10 +171,7 @@ fn type_non_consecutive() {
171171

172172
#[test]
173173
fn type_late_signature() {
174-
let (_, _, errors) = index([
175-
"data Maybe a = Just a | Nothing",
176-
"data Maybe :: Type -> Type",
177-
]);
174+
let (_, _, errors) = index(["data Maybe a = Just a | Nothing", "data Maybe :: Type -> Type"]);
178175
insta::assert_debug_snapshot!(errors);
179176
}
180177

0 commit comments

Comments
 (0)