Skip to content

Commit

Permalink
ICU-21757 Temp workaround version skew
Browse files Browse the repository at this point in the history
  • Loading branch information
mihnita committed May 9, 2024
1 parent 7bea05d commit f4aac0d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ public void TestCCC() {
XPropertyFactory factory = XPropertyFactory.make();
checkProperty(factory, "ccc");

String test = "[:ccc=/3/:]";
String test = "[:Udev:ccc=/3/:]";
UnicodeSet actual = UnicodeSetUtilities.parseUnicodeSet(test);
UnicodeSet expected = new UnicodeSet();
for (int i = 0; i < 256; ++i) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import java.util.SortedMap;
import java.util.TreeSet;
import java.util.stream.Stream;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.EnabledIf;
import org.junit.jupiter.params.ParameterizedTest;
Expand Down Expand Up @@ -374,7 +375,7 @@ public void TestGC() {
UnicodeSetUtilities.parseUnicodeSet("[[:C:][:L:][:M:][:N:][:P:][:S:][:Z:]]"));
}

@Test
@Test @Disabled("Stop using ICU for properties: version skew")
public void TestNF() {
for (String nf : new String[] {"d", "c", "kd", "kc"}) {
checkSetsEqual("[:isnf" + nf + ":]", "[:nf" + nf + "qc!=N:]");
Expand Down

0 comments on commit f4aac0d

Please sign in to comment.