From 9c3da280e0b8331861d3420ea4b5cedc2b6131b0 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Mon, 26 Apr 2021 10:10:57 -0400 Subject: remove #![deny(warnings)] (#10376) Prefer RUSTFLAGS="-D warnings" to prevent warnings, but cannot enable yet due to #10378. --- cli/tests/integration_tests.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'cli/tests/integration_tests.rs') 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] -- cgit v1.2.3