From ad6635fab50c523f5de92660956aa384ca76415d Mon Sep 17 00:00:00 2001 From: Ry Dahl Date: Fri, 17 Jan 2020 08:55:32 -0500 Subject: [PATCH] Fix warnings on windows build (#3697) --- test_plugin/tests/integration_tests.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test_plugin/tests/integration_tests.rs b/test_plugin/tests/integration_tests.rs index cb76ef3ef4..fa51418048 100644 --- a/test_plugin/tests/integration_tests.rs +++ b/test_plugin/tests/integration_tests.rs @@ -1,3 +1,6 @@ +// TODO(ry) Re-enable this test on windows. It is flaky for an unknown reason. +#![cfg(not(windows))] + use deno::test_util::*; use std::process::Command; @@ -12,8 +15,6 @@ const BUILD_VARIANT: &str = "debug"; #[cfg(not(debug_assertions))] const BUILD_VARIANT: &str = "release"; -// TODO(ry) Re-enable this test on windows. It is flaky for an unknown reason. -#[cfg(not(windows))] #[test] fn basic() { let mut build_plugin_base = Command::new("cargo");