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
commit 35c47a8745
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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));
}
}