We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74d57e1 commit e70861fCopy full SHA for e70861f
crates/oxc_angular_compiler/src/component/import_elision.rs
@@ -2105,16 +2105,8 @@ import { Foo, Bar } from './types';
2105
export type { Foo, Bar };
2106
"#;
2107
let filtered = filter_source(source);
2108
- assert!(
2109
- !filtered.contains("Foo"),
2110
- "Foo should be removed.\nFiltered:\n{}",
2111
- filtered
2112
- );
2113
2114
- !filtered.contains("Bar"),
2115
- "Bar should be removed.\nFiltered:\n{}",
2116
2117
+ assert!(!filtered.contains("Foo"), "Foo should be removed.\nFiltered:\n{}", filtered);
+ assert!(!filtered.contains("Bar"), "Bar should be removed.\nFiltered:\n{}", filtered);
2118
}
2119
2120
#[test]
0 commit comments