From 643d052655255c12ba570ead674d2ad2e8f77888 Mon Sep 17 00:00:00 2001 From: Nick Cameron Date: Fri, 14 Dec 2018 17:28:36 +1300 Subject: [PATCH] Address FIXME in test --- tests/cli-misc.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/cli-misc.rs b/tests/cli-misc.rs index c227149ec7a..ae0517822a9 100644 --- a/tests/cli-misc.rs +++ b/tests/cli-misc.rs @@ -549,14 +549,12 @@ fn rls_exists_in_toolchain() { #[test] fn rls_does_not_exist_in_toolchain() { setup(&|config| { - // FIXME: If rls exists in the toolchain, this should suggest a command - // to run to install it expect_ok(config, &["rustup", "default", "stable"]); expect_err( config, &["rls", "--version"], &format!( - "'rls{}' is not installed for the toolchain 'stable-{}'", + "'rls{}' is not installed for the toolchain 'stable-{}'\nTo install, run `rustup component add rls`", EXE_SUFFIX, this_host_triple(), ),