Remove lingering forced nightly usages

These look to have been removed elsewhere, so seem to be left in by
mistake!
master
Alex Crichton 7 years ago
parent 2b97d8fbb1
commit 17b385060f
  1. 2
      src/test/mod.rs
  2. 1
      tests/all/utils/fixture.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");
}

@ -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")

Loading…
Cancel
Save