We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c4f0221 + 8f547c2 commit beab5acCopy full SHA for beab5ac
tests/cli-misc.rs
@@ -657,12 +657,12 @@ fn rename_rls_remove() {
657
expect_ok(config, &["rustup", "component", "add", "rls"]);
658
expect_ok(config, &["rls", "--version"]);
659
expect_ok(config, &["rustup", "component", "remove", "rls"]);
660
- expect_err(config, &["rls", "--version"], "'rls' is not installed");
+ expect_err(config, &["rls", "--version"], &format!("'rls{}' is not installed", EXE_SUFFIX));
661
662
663
664
expect_ok(config, &["rustup", "component", "remove", "rls-preview"]);
665
666
});
667
}
668
0 commit comments