Skip to content

Commit 2110040

Browse files
committed
fixup! fixup! fixup! fixup! fixup! feat(config)!: remove implicit installation from resolve_local_toolchain()
1 parent da324b9 commit 2110040

File tree

2 files changed

+0
-24
lines changed

2 files changed

+0
-24
lines changed

tests/suite/cli_v1.rs

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -169,18 +169,6 @@ async fn remove_toolchain() {
169169
.await;
170170
}
171171

172-
#[tokio::test]
173-
async fn remove_default_toolchain_autoinstalls() {
174-
let mut cx = CliTestContext::new(Scenario::SimpleV1).await;
175-
cx.config.expect_ok(&["rustup", "default", "nightly"]).await;
176-
cx.config
177-
.expect_ok(&["rustup", "toolchain", "remove", "nightly"])
178-
.await;
179-
cx.config
180-
.expect_stderr_ok(&["rustc", "--version"], "info: installing component")
181-
.await;
182-
}
183-
184172
#[tokio::test]
185173
async fn remove_override_toolchain_err_handling() {
186174
let mut cx = CliTestContext::new(Scenario::SimpleV1).await;

tests/suite/cli_v2.rs

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -311,18 +311,6 @@ async fn add_remove_multiple_toolchains() {
311311
}
312312
}
313313

314-
#[tokio::test]
315-
async fn remove_default_toolchain_autoinstalls() {
316-
let mut cx = CliTestContext::new(Scenario::SimpleV2).await;
317-
cx.config.expect_ok(&["rustup", "default", "nightly"]).await;
318-
cx.config
319-
.expect_ok(&["rustup", "toolchain", "remove", "nightly"])
320-
.await;
321-
cx.config
322-
.expect_stderr_ok(&["rustc", "--version"], "info: installing component")
323-
.await;
324-
}
325-
326314
#[tokio::test]
327315
async fn remove_override_toolchain_err_handling() {
328316
let mut cx = CliTestContext::new(Scenario::SimpleV2).await;

0 commit comments

Comments
 (0)