Remove testCharsReplacerHandlesEscapedHex()

This commit is contained in:
Andre601 2022-02-22 11:48:51 +01:00
parent 666ab468a1
commit 350a2be0ed
1 changed files with 0 additions and 8 deletions

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));
}
}