Skip to content

Commit 5cca904

Browse files
committed
fix indentation
1 parent e1639ab commit 5cca904

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

tests/coherence.rs

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,14 @@ fn test_u32_T_where_T_Not_impls() {
6565
"#]]
6666
.assert_debug_eq(&test_program_ok(
6767
"[
68-
crate Foo {
69-
trait Foo<> where [] {}
70-
impl<> Foo<> for u32 where [] {}
71-
impl<ty T> Foo<> for T where [T: Not<>] {}
68+
crate Foo {
69+
trait Foo<> where [] {}
70+
impl<> Foo<> for u32 where [] {}
71+
impl<ty T> Foo<> for T where [T: Not<>] {}
7272
73-
trait Not<> where [] {}
74-
}
75-
]",
73+
trait Not<> where [] {}
74+
}
75+
]",
7676
));
7777
}
7878

@@ -86,14 +86,14 @@ fn test_u32_T_where_T_Is_impls() {
8686
"#]]
8787
.assert_debug_eq(&test_program_ok(
8888
"[
89-
crate Foo {
90-
trait Foo<> where [] {}
91-
impl<> Foo<> for u32 where [] {}
92-
impl<ty T> Foo<> for T where [T: Is<>] {}
89+
crate Foo {
90+
trait Foo<> where [] {}
91+
impl<> Foo<> for u32 where [] {}
92+
impl<ty T> Foo<> for T where [T: Is<>] {}
9393
94-
trait Is<> where [] {}
95-
impl<> Is<> for u32 where [] {}
96-
}
97-
]",
94+
trait Is<> where [] {}
95+
impl<> Is<> for u32 where [] {}
96+
}
97+
]",
9898
));
9999
}

0 commit comments

Comments
 (0)