From: debris Date: Fri, 28 Jul 2017 09:19:54 +0000 (+0200) Subject: Fixed test_virtual_manifest_all_implied test X-Git-Tag: archive/raspbian/0.35.0-2+rpi1~3^2^2^2^2^2^2^2~22^2~7^2~42^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=147644805d720d607c140ddd2d17e548a1d2519c;p=cargo.git Fixed test_virtual_manifest_all_implied test --- diff --git a/tests/test.rs b/tests/test.rs index fb3dad0d3..d0d577d09 100644 --- a/tests/test.rs +++ b/tests/test.rs @@ -2482,20 +2482,9 @@ fn test_virtual_manifest_all_implied() { "#); assert_that(p.cargo_process("test"), - execs().with_status(0).with_stdout_contains("\ -running 1 test -test b ... ok - -test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured - -") - .with_stdout_contains("\ -running 1 test -test b ... ok - -test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured - -")); + execs().with_status(0) + .with_stdout_contains("test a ... ok") + .with_stdout_contains("test b ... ok")); } #[test]