Skip to content

Commit 967e199

Browse files
committed
test(update): Remove unnecesary verbose
1 parent 21dfe88 commit 967e199

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/testsuite/git.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1372,7 +1372,7 @@ fn dep_with_changed_submodule() {
13721372
sleep_ms(1000);
13731373
// Update the dependency and carry on!
13741374
println!("update");
1375-
p.cargo("update -v")
1375+
p.cargo("update")
13761376
.with_stderr("")
13771377
.with_stderr(&format!(
13781378
"[UPDATING] git repository `{}`\n\

tests/testsuite/local_registry.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ fn multiple_versions() {
183183
.file("src/lib.rs", "pub fn bar() {}")
184184
.publish();
185185

186-
p.cargo("update -v")
186+
p.cargo("update")
187187
.with_stderr("[UPDATING] bar v0.1.0 -> v0.2.0")
188188
.run();
189189
}

0 commit comments

Comments
 (0)