Skip to content

Commit f1f3b15

Browse files
committed
Updated build_virtual_manifest_one_project test
1 parent 1476448 commit f1f3b15

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/build.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -3096,11 +3096,10 @@ fn build_virtual_manifest_one_project() {
30963096
pub fn bar() {}
30973097
"#);
30983098

3099-
// The order in which foo and bar are built is not guaranteed
31003099
assert_that(p.cargo_process("build")
31013100
.arg("-p").arg("foo"),
31023101
execs().with_status(0)
3103-
.with_stderr_does_not_contain("[..] Compiling bar v0.1.0 ([..])")
3102+
.with_stderr_does_not_contain("bar")
31043103
.with_stderr_contains("[..] Compiling foo v0.1.0 ([..])")
31053104
.with_stderr("[..] Compiling [..] v0.1.0 ([..])\n\
31063105
[..] Finished dev [unoptimized + debuginfo] target(s) in [..]\n"));

0 commit comments

Comments
 (0)