From fd1a9a93fee829ea471601bd932385a4ab4ac4d2 Mon Sep 17 00:00:00 2001 From: gftea Date: Mon, 30 Jan 2023 20:34:07 +0100 Subject: [PATCH] tidy by rustfmt --- crates/ide/src/file_structure.rs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/crates/ide/src/file_structure.rs b/crates/ide/src/file_structure.rs index 5303590f7f..b23763dce8 100644 --- a/crates/ide/src/file_structure.rs +++ b/crates/ide/src/file_structure.rs @@ -220,7 +220,9 @@ mod tests { #[test] fn test_nagative_trait_bound() { let txt = r#"impl !Unpin for Test {}"#; - check(txt, expect![[r#" + check( + txt, + expect![[r#" [ StructureNode { parent: None, @@ -234,7 +236,8 @@ mod tests { deprecated: false, }, ] - "#]]); + "#]], + ); } #[test]