diff options
| author | Michael Wright <mikerite@lavabit.com> | 2019-07-05 07:49:19 +0200 |
|---|---|---|
| committer | flip1995 <hello@philkrones.com> | 2019-07-07 15:11:38 +0200 |
| commit | c0c2a8d9c1b2d4f41ad7d61d11a0980116dc795c (patch) | |
| tree | d1c143aac533a81bff2ed2e17e1b33f44fb5499e | |
| parent | 3977843ab5592f8fb9c20f7f8436bae362234c52 (diff) | |
| download | rust-c0c2a8d9c1b2d4f41ad7d61d11a0980116dc795c.tar.gz rust-c0c2a8d9c1b2d4f41ad7d61d11a0980116dc795c.zip | |
Work around rustup fallback error on Windows
| -rw-r--r-- | tests/fmt.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fmt.rs b/tests/fmt.rs index 47be4ec125b..2500132d7ad 100644 --- a/tests/fmt.rs +++ b/tests/fmt.rs @@ -8,7 +8,7 @@ fn fmt() { let dev_dir = root_dir.join("clippy_dev"); let output = std::process::Command::new("cargo") .current_dir(dev_dir) - .args(&["run", "--", "fmt", "--check"]) + .args(&["+nightly", "run", "--", "fmt", "--check"]) .output() .unwrap(); |
