ICU-21579 Compiler warning fixes.

Fix typos in hard-coded test data, uncovered by a compiler upgrade to
clang version 12.0.0-1ubuntu1
This commit is contained in:
Andy Heninger 2021-05-20 18:34:39 -07:00 committed by Frank Yung-Fong Tang
parent 5518bb0c84
commit 7d75a85501
2 changed files with 5 additions and 5 deletions

View file

@ -425,7 +425,7 @@ void LocaleBuilderTest::TestSetLanguageIllFormed() {
"F",
"2",
"0",
"9"
"9",
"{",
".",
"[",
@ -520,7 +520,7 @@ void LocaleBuilderTest::TestSetScriptIllFormed() {
"F",
"2",
"0",
"9"
"9",
"{",
".",
"[",
@ -619,7 +619,7 @@ void LocaleBuilderTest::TestSetRegionIllFormed() {
"F",
"2",
"0",
"9"
"9",
"{",
".",
"[",
@ -763,7 +763,7 @@ void LocaleBuilderTest::TestSetVariantIllFormed() {
"F",
"2",
"0",
"9"
"9",
"{",
".",
"[",

View file

@ -1306,7 +1306,7 @@ void PluralRulesTest::testParseErrors() {
"A: n is 13", // Uppercase keywords not allowed.
"a: n ! = 3", // spaces in != operator
"a: n = not 3", // '=' not exact equivalent of 'is'
"a: n ! in 3..4" // '!' not exact equivalent of 'not'
"a: n ! in 3..4", // '!' not exact equivalent of 'not'
"a: n % 37 ! in 3..4"
};