Skip to content

Commit 84d66bf

Browse files
committed
Fixed unit test
1 parent 2db0b30 commit 84d66bf

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/unittest.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1718,8 +1718,7 @@ int testGetFullTerritoryName(void) {
17181718
for (i = 0; i < (int) (sizeof(locales_to_test) / sizeof(locales_to_test[0])); i++) {
17191719
const char *locale = locales_to_test[i];
17201720
int nrInLocale = 0;
1721-
for (territory = TERRITORY_NLD; territory < TERRITORY_NLD + 1; ++territory) {
1722-
// TODO for (territory = _TERRITORY_MIN + 1; territory < _TERRITORY_MAX; ++territory) {
1721+
for (territory = _TERRITORY_MIN + 1; territory < _TERRITORY_MAX; ++territory) {
17231722
char expectedLocalName[MAX_TERRITORY_FULLNAME_UTF8_LEN + 1];
17241723
getFullTerritoryNameInLocaleUtf8(expectedLocalName, territory, 0, 0);
17251724

0 commit comments

Comments
 (0)