summaryrefslogtreecommitdiffstats
path: root/configgen
diff options
context:
space:
mode:
authorgjoranv <gv@oath.com>2017-08-16 13:10:14 +0200
committergjoranv <gv@oath.com>2017-08-16 13:10:14 +0200
commit875e2dcd783d6371ed1e4d5a289802763026786c (patch)
treec042e4219334e06ce1d4a6b6d3cfd4febaec3d29 /configgen
parent973f6911cc3e3e4710e2b2e2886a5f0a92e78b99 (diff)
minor: remove 'require_that' prefix.
Diffstat (limited to 'configgen')
-rw-r--r--configgen/src/test/java/com/yahoo/config/codegen/DefParserTest.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/configgen/src/test/java/com/yahoo/config/codegen/DefParserTest.java b/configgen/src/test/java/com/yahoo/config/codegen/DefParserTest.java
index fecca7d022a..148b654f4e5 100644
--- a/configgen/src/test/java/com/yahoo/config/codegen/DefParserTest.java
+++ b/configgen/src/test/java/com/yahoo/config/codegen/DefParserTest.java
@@ -337,7 +337,7 @@ public class DefParserTest {
}
@Test
- public void require_that_parameter_name_starting_with_digit_is_illegal() {
+ public void parameter_name_starting_with_digit_is_illegal() {
Class<?> exceptionClass = DefParser.DefParserException.class;
StringBuilder sb = createDefTemplate();
String invalidLine = "1a int\n";
@@ -352,7 +352,7 @@ public class DefParserTest {
}
@Test
- public void require_that_parameter_name_starting_with_uppercase_is_illegal() {
+ public void parameter_name_starting_with_uppercase_is_illegal() {
Class<?> exceptionClass = DefParser.DefParserException.class;
StringBuilder sb = createDefTemplate();
String invalidLine = "SomeInt int\n";
@@ -367,7 +367,7 @@ public class DefParserTest {
}
@Test
- public void require_that_parameter_name_starting_with_the_internal_prefix_is_illegal() {
+ public void parameter_name_starting_with_the_internal_prefix_is_illegal() {
String internalPrefix = ReservedWords.INTERNAL_PREFIX;
Class<?> exceptionClass = DefParser.DefParserException.class;
StringBuilder sb = createDefTemplate();