From 17b385060f7ba8e5ddf2d3eb8fbe2206cbf94032 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Sat, 29 Sep 2018 07:31:54 -0700 Subject: [PATCH] Remove lingering forced nightly usages These look to have been removed elsewhere, so seem to be left in by mistake! --- src/test/mod.rs | 2 +- tests/all/utils/fixture.rs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/test/mod.rs b/src/test/mod.rs index f0ea233..d182ffd 100644 --- a/src/test/mod.rs +++ b/src/test/mod.rs @@ -30,7 +30,7 @@ where let output = { let mut cmd = Command::new("cargo"); cmd.envs(envs); - cmd.current_dir(path).arg("+nightly").arg("test"); + cmd.current_dir(path).arg("test"); if release { cmd.arg("--release"); } diff --git a/tests/all/utils/fixture.rs b/tests/all/utils/fixture.rs index c8e7611..720953d 100644 --- a/tests/all/utils/fixture.rs +++ b/tests/all/utils/fixture.rs @@ -253,7 +253,6 @@ impl Fixture { pub fn cargo_check(&self) -> &Self { Command::new("cargo") .current_dir(&self.path) - .arg("+nightly") .arg("check") .arg("--target") .arg("wasm32-unknown-unknown")