From 3363931f7fccc81ea179bdbe516faf7e07430e9e Mon Sep 17 00:00:00 2001 From: Dom Slee Date: Mon, 13 Mar 2023 18:57:26 +1100 Subject: [PATCH] redundant escapes --- tests/testsuite/install.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/testsuite/install.rs b/tests/testsuite/install.rs index 2df3f890c..dd9844f17 100644 --- a/tests/testsuite/install.rs +++ b/tests/testsuite/install.rs @@ -576,7 +576,7 @@ fn multiple_packages_containing_binaries() { "\ [UPDATING] git repository [..] [ERROR] multiple packages with binaries found: bar, foo. \ -When installing a git repository, cargo will always search the entire repo for any Cargo.toml.\n\ +When installing a git repository, cargo will always search the entire repo for any Cargo.toml. Please specify a package, e.g. `cargo install --git {git_url} bar`. " )) @@ -602,7 +602,7 @@ fn multiple_packages_matching_example() { "\ [UPDATING] git repository [..] [ERROR] multiple packages with examples found: bar, foo. \ -When installing a git repository, cargo will always search the entire repo for any Cargo.toml.\n\ +When installing a git repository, cargo will always search the entire repo for any Cargo.toml. Please specify a package, e.g. `cargo install --git {git_url} bar`." )) .run();