Merge pull request #810 from PlaceholderAPI/feature/remove-escape-hex-test

Remove testCharsReplacerHandlesEscapedHex()
This commit is contained in:
Glare
2022-03-13 05:48:30 -05:00
committed by GitHub

View File

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