From 9c197a87e974d9a032330e72ec8834677dbe6e94 Mon Sep 17 00:00:00 2001 From: "Steven R. Loomis" Date: Wed, 12 Jun 2024 10:04:01 -0500 Subject: [PATCH] CLDR-16835 Extended Submission Phase - bugfix - test needed to be updated --- .../cldr/test/TestSubmissionLocales.java | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/tools/cldr-code/src/test/java/org/unicode/cldr/test/TestSubmissionLocales.java b/tools/cldr-code/src/test/java/org/unicode/cldr/test/TestSubmissionLocales.java index 5fc20a5bdf5..702dd517b76 100644 --- a/tools/cldr-code/src/test/java/org/unicode/cldr/test/TestSubmissionLocales.java +++ b/tools/cldr-code/src/test/java/org/unicode/cldr/test/TestSubmissionLocales.java @@ -99,18 +99,18 @@ public void testIsTcLocale(final String loc, final String tf) { @ParameterizedTest @CsvSource({ - // loc, isTc - "root, true", - "de, true", - "de_IT, true", - "csw, false", - "csw_CA, false", - "cho_US, false", - "zh, true", - "zh_Hant_MO, true", - "smj, false", - "smj_NO, false", - "smj_SE, false", + // loc, isExtended + "root, false", + "de, false", + "de_IT, false", + "csw, true", + "csw_CA, true", + "cho_US, true", + "zh, false", + "zh_Hant_MO, false", + "smj, true", + "smj_NO, true", + "smj_SE, true", }) public void testIsExtendedSubmissionLocale(final String loc, final String tf) { final CLDRLocale l = CLDRLocale.getInstance(loc);