Fix typo: s/Numering/Numbering/

Kept the intended word (rather than "number system" or "numeral
system" as might seem more natural) since CLDR's
common/supplemental/numberingSystems.xml uses numbering in its name
and in the XML tag-names in its contents.  Thanks to Kari Oikarinen
for noticing, in review.

Change-Id: I85077611f9de8c4e812e1b5324fa2e99868b7b95
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
Edward Welbourne 2018-07-13 16:03:25 +02:00
parent 9d52eb9ed0
commit a9dfe71cca

View File

@ -118,8 +118,8 @@ private slots:
void monthName(); void monthName();
void standaloneMonthName(); void standaloneMonthName();
void defaultNumeringSystem_data(); void defaultNumberingSystem_data();
void defaultNumeringSystem(); void defaultNumberingSystem();
void ampm_data(); void ampm_data();
void ampm(); void ampm();
@ -2204,7 +2204,7 @@ void tst_QLocale::underflowOverflow()
QVERIFY(!ok); QVERIFY(!ok);
} }
void tst_QLocale::defaultNumeringSystem_data() void tst_QLocale::defaultNumberingSystem_data()
{ {
QTest::addColumn<QString>("expect"); QTest::addColumn<QString>("expect");
@ -2221,7 +2221,7 @@ void tst_QLocale::defaultNumeringSystem_data()
QTest::newRow("kok_IN") << QStringLiteral("123"); QTest::newRow("kok_IN") << QStringLiteral("123");
} }
void tst_QLocale::defaultNumeringSystem() void tst_QLocale::defaultNumberingSystem()
{ {
QFETCH(QString, expect); QFETCH(QString, expect);
QLatin1String name(QTest::currentDataTag()); QLatin1String name(QTest::currentDataTag());