Skip to content

Commit 0d7ba13

Browse files
committed
style: run tidy tests
1 parent 9480b38 commit 0d7ba13

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

crates/ide-assists/src/handlers/extract_type_alias.rs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ fn collect_used_generics<'gp>(
189189
}
190190
}
191191
}
192-
},
192+
}
193193
_ => (),
194194
});
195195
// stable resort to lifetime, type, const
@@ -378,8 +378,9 @@ impl<'outer, Outer, const OUTER: usize> () {
378378
}
379379

380380
#[test]
381-
fn issue_11197 () {
382-
check_assist(extract_type_alias,
381+
fn issue_11197() {
382+
check_assist(
383+
extract_type_alias,
383384
r#"
384385
struct Foo<T, const N: usize>
385386
where
@@ -397,6 +398,7 @@ where
397398
{
398399
arr: Type<T, N>,
399400
}
400-
"#);
401+
"#,
402+
);
401403
}
402404
}

0 commit comments

Comments
 (0)