Skip to content

Commit 1476448

Browse files
committed
Fixed test_virtual_manifest_all_implied test
1 parent 7d842fe commit 1476448

File tree

1 file changed

+3
-14
lines changed

1 file changed

+3
-14
lines changed

tests/test.rs

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2482,20 +2482,9 @@ fn test_virtual_manifest_all_implied() {
24822482
"#);
24832483

24842484
assert_that(p.cargo_process("test"),
2485-
execs().with_status(0).with_stdout_contains("\
2486-
running 1 test
2487-
test b ... ok
2488-
2489-
test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured
2490-
2491-
")
2492-
.with_stdout_contains("\
2493-
running 1 test
2494-
test b ... ok
2495-
2496-
test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured
2497-
2498-
"));
2485+
execs().with_status(0)
2486+
.with_stdout_contains("test a ... ok")
2487+
.with_stdout_contains("test b ... ok"));
24992488
}
25002489

25012490
#[test]

0 commit comments

Comments
 (0)