Skip to content

Commit e70861f

Browse files
committed
chore: format
1 parent 74d57e1 commit e70861f

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

crates/oxc_angular_compiler/src/component/import_elision.rs

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2105,16 +2105,8 @@ import { Foo, Bar } from './types';
21052105
export type { Foo, Bar };
21062106
"#;
21072107
let filtered = filter_source(source);
2108-
assert!(
2109-
!filtered.contains("Foo"),
2110-
"Foo should be removed.\nFiltered:\n{}",
2111-
filtered
2112-
);
2113-
assert!(
2114-
!filtered.contains("Bar"),
2115-
"Bar should be removed.\nFiltered:\n{}",
2116-
filtered
2117-
);
2108+
assert!(!filtered.contains("Foo"), "Foo should be removed.\nFiltered:\n{}", filtered);
2109+
assert!(!filtered.contains("Bar"), "Bar should be removed.\nFiltered:\n{}", filtered);
21182110
}
21192111

21202112
#[test]

0 commit comments

Comments
 (0)