Skip to content

Commit

Permalink
Make test file testing code use same DraftStatus level as test file
Browse files Browse the repository at this point in the history
  • Loading branch information
echeran committed Jun 12, 2024
1 parent 8e8fcac commit 16094b3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
import org.unicode.cldr.util.AttributeValueValidity.MatcherPattern;
import org.unicode.cldr.util.CLDRConfig;
import org.unicode.cldr.util.CLDRFile;
import org.unicode.cldr.util.CLDRFile.DraftStatus;
import org.unicode.cldr.util.CLDRPaths;
import org.unicode.cldr.util.CldrUtility;
import org.unicode.cldr.util.Factory;
Expand Down Expand Up @@ -532,7 +533,7 @@ public void TestLocaleDisplay() {
String[] parts = line.split("=");
switch (parts[0]) {
case "@locale":
cldrFile = factory.make(parts[1], true);
cldrFile = factory.make(parts[1], true, DraftStatus.contributed);
break;
case "@languageDisplay":
switch (parts[1]) {
Expand Down

0 comments on commit 16094b3

Please sign in to comment.