Skip to content

Commit d85fd93

Browse files
committed
Fix inconsistency with quoting
Locally, the output looks like `'bar=...'`, but in CI the quotes are missing. Allow either.
1 parent d9f63cd commit d85fd93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/testsuite/rustdoc_extern_html.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ fn rebuilds_when_changing() {
363363
p.cargo("doc -v --no-deps -Zrustdoc-map")
364364
.masquerade_as_nightly_cargo()
365365
.with_stderr_contains(
366-
"[RUNNING] `rustdoc [..]--extern-html-root-url 'bar=https://example.com/bar/1.0.0/[..]' [..]",
366+
"[RUNNING] `rustdoc [..]--extern-html-root-url [..]bar=https://example.com/bar/1.0.0/[..]",
367367
)
368368
.run();
369369
}

0 commit comments

Comments
 (0)