@@ -705,7 +705,7 @@ async fn run_rls_when_not_installed() {
705705 . await
706706 . with_stderr ( snapbox:: str![ [ r#"
707707error: 'rls[EXE]' is not installed for the toolchain 'stable-[HOST_TRIPLE]'.
708- To install, run `rustup component add rls`
708+ help: run `rustup component add rls` to install it
709709
710710"# ] ] )
711711 . is_err ( ) ;
@@ -727,7 +727,7 @@ async fn run_rls_when_not_installed_for_nightly() {
727727 . await
728728 . with_stderr ( snapbox:: str![ [ r#"
729729error: 'rls[EXE]' is not installed for the toolchain 'nightly-[HOST_TRIPLE]'.
730- To install, run `rustup component add --toolchain nightly-[HOST_TRIPLE] rls`
730+ help: run `rustup component add --toolchain nightly-[HOST_TRIPLE] rls` to install it
731731
732732"# ] ] )
733733 . is_err ( ) ;
@@ -1403,7 +1403,7 @@ async fn which_asking_uninstalled_components() {
14031403 . await
14041404 . with_stderr ( snapbox:: str![ [ r#"
14051405error: 'rustfmt' is not installed for the toolchain 'custom-1'.
1406- [..]`rustup component add rustfmt`
1406+ [..]`rustup component add rustfmt`[..]
14071407
14081408"# ] ] )
14091409 . is_err ( ) ;
@@ -1419,7 +1419,7 @@ error: 'rustfmt' is not installed for the toolchain 'custom-1'.
14191419 . await
14201420 . with_stderr ( snapbox:: str![ [ r#"
14211421[..]'rustfmt' is not installed for the toolchain 'custom-2'.
1422- [..]`rustup component add --toolchain custom-2 rustfmt`
1422+ [..]`rustup component add --toolchain custom-2 rustfmt`[..]
14231423
14241424"# ] ] )
14251425 . is_err ( ) ;
0 commit comments