diff options
author | Laurențiu Nicola <[email protected]> | 2021-06-18 12:40:51 +0100 |
---|---|---|
committer | Laurențiu Nicola <[email protected]> | 2021-06-18 12:40:51 +0100 |
commit | e3ce88f6f25901b1d33fbc5f931a9d8f90b9e2b8 (patch) | |
tree | c6876d5f81bafe5d405f7ab72ff61e4a748a3bc5 /crates/test_utils | |
parent | 0d863ccea96c6c3256fad12807a0eedbfccd8294 (diff) |
Minor clippy perf fixes
Diffstat (limited to 'crates/test_utils')
-rw-r--r-- | crates/test_utils/src/fixture.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/test_utils/src/fixture.rs b/crates/test_utils/src/fixture.rs index 8d8f3b560..44656267f 100644 --- a/crates/test_utils/src/fixture.rs +++ b/crates/test_utils/src/fixture.rs | |||
@@ -131,7 +131,7 @@ impl Fixture { | |||
131 | res.push(meta) | 131 | res.push(meta) |
132 | } else { | 132 | } else { |
133 | if line.starts_with("// ") | 133 | if line.starts_with("// ") |
134 | && line.contains(":") | 134 | && line.contains(':') |
135 | && !line.contains("::") | 135 | && !line.contains("::") |
136 | && line.chars().all(|it| !it.is_uppercase()) | 136 | && line.chars().all(|it| !it.is_uppercase()) |
137 | { | 137 | { |