Skip to content

Commit 0cad07e

Browse files
committed
chore: Apply clippy fix in clippy-tracing integration tests
Every time my pre-commit hook does `cargo clippy --fix` it does this change, and everytime I dont commit it. But its getting annoying, so here it is. Signed-off-by: Patrick Roy <[email protected]>
1 parent c2e80c1 commit 0cad07e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/clippy-tracing/tests/integration_tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ fn exclude() {
191191
lhs + rhs\n}";
192192

193193
let dir_path = format!("/tmp/{}", Uuid::new_v4());
194-
let _dir = std::fs::create_dir(&dir_path).unwrap();
194+
std::fs::create_dir(&dir_path).unwrap();
195195

196196
dbg!(&dir_path);
197197

0 commit comments

Comments
 (0)