This is an automated email from the ASF dual-hosted git repository.
garydgregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git
The following commit(s) were added to refs/heads/master by this push:
new e985ede48 Add to tringUtilsStripTest.testStripAccentsSymbolMath()
e985ede48 is described below
commit e985ede4832b91adc76fe54a33cd27251404bcd2
Author: Gary Gregory <[email protected]>
AuthorDate: Wed May 6 10:56:16 2026 -0400
Add to tringUtilsStripTest.testStripAccentsSymbolMath()
---
src/test/java/org/apache/commons/lang3/StringUtilsStripTest.java | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/test/java/org/apache/commons/lang3/StringUtilsStripTest.java
b/src/test/java/org/apache/commons/lang3/StringUtilsStripTest.java
index 5f971feac..dddca79b6 100644
--- a/src/test/java/org/apache/commons/lang3/StringUtilsStripTest.java
+++ b/src/test/java/org/apache/commons/lang3/StringUtilsStripTest.java
@@ -87,6 +87,8 @@ void testStripAccentsSymbolMath() {
assertEquals(gt, StringUtils.stripAccents("\uFE65"));
assertEquals(gt, StringUtils.stripAccents("\uFE65"));
assertEquals(gt, StringUtils.stripAccents("\u226F"));
+ //
+ assertEquals("</script>",
StringUtils.stripAccents("\uFF1C\uFF0Fscript\uFF1E"));
}
@Test