From: Esteve Fernandez Date: Tue, 29 May 2018 10:05:12 +0000 (+0200) Subject: Use [/] instead of hardcoded / so that it's portable on Windows. X-Git-Tag: archive/raspbian/0.35.0-2+rpi1~3^2^2^2^2^2^2^2~22^2^2~12^2~2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=8f3be0626f85dc7daaea6861c62720a3d6cf33fe;p=cargo.git Use [/] instead of hardcoded / so that it's portable on Windows. --- diff --git a/tests/testsuite/doc.rs b/tests/testsuite/doc.rs index 4e5d3f728..8d5f6fc44 100644 --- a/tests/testsuite/doc.rs +++ b/tests/testsuite/doc.rs @@ -1509,7 +1509,7 @@ fn doc_workspace_open_different_library_and_package_names() { execs() .with_status(0) .with_stderr_contains("[..] Documenting foo v0.1.0 ([..])") - .with_stderr_contains("[..] Opening [..]/foo/target/doc/foolib/index.html") + .with_stderr_contains("[..] Opening [..][/]foo[/]target[/]doc[/]foolib[/]index.html") ); }