From 2e4e2a79ab49637c3a180646904bbfcd7afa48d1 Mon Sep 17 00:00:00 2001 From: MishaDemianenko Date: Thu, 13 Sep 2018 16:01:39 +0200 Subject: [PATCH] Proper naming --- .../test/java/org/neo4j/kernel/configuration/SettingsTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/community/kernel/src/test/java/org/neo4j/kernel/configuration/SettingsTest.java b/community/kernel/src/test/java/org/neo4j/kernel/configuration/SettingsTest.java index 98ccbe551ff76..871a15b1c9ac9 100644 --- a/community/kernel/src/test/java/org/neo4j/kernel/configuration/SettingsTest.java +++ b/community/kernel/src/test/java/org/neo4j/kernel/configuration/SettingsTest.java @@ -159,7 +159,7 @@ void testMin() } @Test - void exceptDoesNoAllowForbiddenValues() + void exceptDoesNotAllowForbiddenValues() { Setting restrictedSetting = buildSetting( "foo", STRING, "test" ).constraint( except( "a", "b", "c" ) ).build(); assertEquals( "test", restrictedSetting.apply( map( stringMap() ) ) );