Skip to content

Commit

Permalink
Fix warnings on windows build (denoland#3697)
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Jan 17, 2020
1 parent fe56620 commit ad6635f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test_plugin/tests/integration_tests.rs
Original file line number Diff line number Diff line change
@@ -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;

Expand All @@ -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");
Expand Down

0 comments on commit ad6635f

Please sign in to comment.