Fix broken test in BootstrapCliParserTests

This commit is contained in:
Jason Tedor 2015-09-23 10:37:55 -04:00
parent 8d1d8f9c46
commit b1965267ec
1 changed files with 1 additions and 1 deletions

View File

@ -226,7 +226,7 @@ public class BootstrapCliParserTests extends CliToolTestCase {
parser.parse("start", new String[]{"--foo=bar", "-Dbaz=qux"});
fail("expected IllegalArgumentException for out-of-order parameters");
} catch (IllegalArgumentException e) {
assertThat(e.getMessage(), containsString("must appear before any parameters starting with --"));
assertThat(e.getMessage(), containsString("must be before any parameters starting with --"));
}
}