Skip to content

Commit 27c49ae

Browse files
committed
Fixes verbose output tests
1 parent 971598b commit 27c49ae

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/testsuite/doc.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1118,12 +1118,12 @@ fn doc_edition() {
11181118

11191119
p.cargo("doc -v")
11201120
.masquerade_as_nightly_cargo()
1121-
.with_stderr_contains("[RUNNING] `rustdoc [..]-Zunstable-options --edition=2018[..]")
1121+
.with_stderr_contains("[RUNNING] `rustdoc [..] --edition=2018[..]")
11221122
.run();
11231123

11241124
p.cargo("test -v")
11251125
.masquerade_as_nightly_cargo()
1126-
.with_stderr_contains("[RUNNING] `rustdoc [..]-Zunstable-options --edition=2018[..]")
1126+
.with_stderr_contains("[RUNNING] `rustdoc [..] --edition=2018[..]")
11271127
.run();
11281128
}
11291129

@@ -1150,12 +1150,12 @@ fn doc_target_edition() {
11501150

11511151
p.cargo("doc -v")
11521152
.masquerade_as_nightly_cargo()
1153-
.with_stderr_contains("[RUNNING] `rustdoc [..]-Zunstable-options --edition=2018[..]")
1153+
.with_stderr_contains("[RUNNING] `rustdoc [..]--edition=2018[..]")
11541154
.run();
11551155

11561156
p.cargo("test -v")
11571157
.masquerade_as_nightly_cargo()
1158-
.with_stderr_contains("[RUNNING] `rustdoc [..]-Zunstable-options --edition=2018[..]")
1158+
.with_stderr_contains("[RUNNING] `rustdoc [..]--edition=2018[..]")
11591159
.run();
11601160
}
11611161

0 commit comments

Comments
 (0)