Force all identifiers to lower case

This commit is contained in:
extendedclip
2020-07-31 12:01:27 -04:00
parent 2e28647497
commit 0e733b6933
2 changed files with 3 additions and 3 deletions

View File

@@ -87,7 +87,7 @@ public final class ReplacerUnitTester
@Test
void testCharsReplacerHandlesEscapedHex()
{
final String text = "\\&xFFFFFFThis should not change.";
final String text = "\\&xffffffThis should not change.";
assertEquals(text.substring(1), Values.CHARS_REPLACER.apply(text, null, Values.PLACEHOLDERS::get));
}