From f1f3b1535421f627d787067ff0a39183d3ba0775 Mon Sep 17 00:00:00 2001 From: debris Date: Fri, 28 Jul 2017 13:51:16 +0200 Subject: [PATCH] Updated build_virtual_manifest_one_project test --- tests/build.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/build.rs b/tests/build.rs index bc203eef69f..2f82def40ee 100644 --- a/tests/build.rs +++ b/tests/build.rs @@ -3096,11 +3096,10 @@ fn build_virtual_manifest_one_project() { pub fn bar() {} "#); - // The order in which foo and bar are built is not guaranteed assert_that(p.cargo_process("build") .arg("-p").arg("foo"), execs().with_status(0) - .with_stderr_does_not_contain("[..] Compiling bar v0.1.0 ([..])") + .with_stderr_does_not_contain("bar") .with_stderr_contains("[..] Compiling foo v0.1.0 ([..])") .with_stderr("[..] Compiling [..] v0.1.0 ([..])\n\ [..] Finished dev [unoptimized + debuginfo] target(s) in [..]\n"));