Fix failing test due to CUSTOM_COMPILATION Group

This commit is contained in:
Phillip Webb 2013-07-30 13:54:42 -07:00
parent 22454c8edf
commit 4213a31a7d
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ public class TestGroupTests {
thrown.expect(IllegalArgumentException.class);
thrown.expectMessage("Unable to find test group 'missing' when parsing " +
"testGroups value: 'performance, missing'. Available groups include: " +
"[LONG_RUNNING,PERFORMANCE,JMXMP,CI]");
"[LONG_RUNNING,PERFORMANCE,JMXMP,CI,CUSTOM_COMPILATION]");
TestGroup.parse("performance, missing");
}