Issue #5087
authorTimothy Bess <timbessmail@gmail.com>
Wed, 28 Feb 2018 21:12:34 +0000 (16:12 -0500)
committerTimothy Bess <timbessmail@gmail.com>
Wed, 28 Feb 2018 21:12:34 +0000 (16:12 -0500)
* fix broken test case

tests/testsuite/workspaces.rs

index 1d2bf33fc87ae0a193361e6e53b9e8d0ac73c67d..fadcf070ecaf1a8919d5eaa421a6bebee3dfe8b4 100644 (file)
@@ -780,9 +780,9 @@ fn virtual_build_no_members() {
     assert_that(p.cargo("build"),
                 execs().with_status(101)
                        .with_stderr("\
-error: manifest path `[..]` contains no package: The manifest is virtual, \
-and the workspace has no members.
-"));
+                        error: Workspace contains no members to be compiled. \
+                        Be sure all workspace members haven't been excluded")
+    );
 }
 
 #[test]