We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8611f0b commit 65aed3bCopy full SHA for 65aed3b
tests/run-make/rustdoc-scrape-examples-dep-info/rmake.rs
@@ -10,10 +10,10 @@ fn main() {
10
&["--emit=dep-info,invocation-specific"],
11
);
12
13
- let content = rfs::read_to_string("foobar.d");
+ let content = rfs::read_to_string("foobar.d").replace(r"\", "/");
14
assert_contains(&content, "lib.rs:");
15
assert_contains(&content, "rustdoc/ex.calls:");
16
17
- let content = rfs::read_to_string("ex.d");
+ let content = rfs::read_to_string("ex.d").replace(r"\", "/");
18
assert_contains(&content, "examples/ex.rs:");
19
}
0 commit comments