test(update): Remove unnecesary verbose

This commit is contained in:
Ed Page 2024-01-30 20:49:21 -06:00
parent 21dfe88079
commit 967e199be7
2 changed files with 2 additions and 2 deletions

View File

@ -1372,7 +1372,7 @@ fn dep_with_changed_submodule() {
sleep_ms(1000);
// Update the dependency and carry on!
println!("update");
p.cargo("update -v")
p.cargo("update")
.with_stderr("")
.with_stderr(&format!(
"[UPDATING] git repository `{}`\n\

View File

@ -183,7 +183,7 @@ fn multiple_versions() {
.file("src/lib.rs", "pub fn bar() {}")
.publish();
p.cargo("update -v")
p.cargo("update")
.with_stderr("[UPDATING] bar v0.1.0 -> v0.2.0")
.run();
}