summaryrefslogtreecommitdiff
path: root/cli/tests/integration_tests.rs
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2021-04-26 10:10:57 -0400
committerGitHub <noreply@github.com>2021-04-26 10:10:57 -0400
commit9c3da280e0b8331861d3420ea4b5cedc2b6131b0 (patch)
tree83c85bd051676df11c059845e449e944f54da982 /cli/tests/integration_tests.rs
parentcdd2355f0f516e55ef638f38006677003685a92f (diff)
remove #![deny(warnings)] (#10376)
Prefer RUSTFLAGS="-D warnings" to prevent warnings, but cannot enable yet due to #10378.
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r--cli/tests/integration_tests.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs
index 770e87244..50c70213a 100644
--- a/cli/tests/integration_tests.rs
+++ b/cli/tests/integration_tests.rs
@@ -5384,8 +5384,7 @@ console.log("finish");
.wait_with_output()
.unwrap();
assert!(output.status.success());
- let exists = std::path::Path::new(&exe).exists();
- assert!(exists, true);
+ assert!(std::path::Path::new(&exe).exists());
}
#[test]