summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/tools/qlocale/tst_qlocale.cpp
diff options
context:
space:
mode:
authorEdward Welbourne <edward.welbourne@qt.io>2018-07-13 16:03:25 +0200
committerEdward Welbourne <edward.welbourne@qt.io>2018-07-17 14:40:05 +0000
commita9dfe71cca38e6b62445292ed2c6ec1c8224430a (patch)
treeb66b3b882245098903e52fb56d2c885fd632113e /tests/auto/corelib/tools/qlocale/tst_qlocale.cpp
parent9d52eb9ed03017d0986f6af93ec6e2ed93d55722 (diff)
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>
Diffstat (limited to 'tests/auto/corelib/tools/qlocale/tst_qlocale.cpp')
-rw-r--r--tests/auto/corelib/tools/qlocale/tst_qlocale.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/auto/corelib/tools/qlocale/tst_qlocale.cpp b/tests/auto/corelib/tools/qlocale/tst_qlocale.cpp
index 4162fc657b..06706e7ee8 100644
--- a/tests/auto/corelib/tools/qlocale/tst_qlocale.cpp
+++ b/tests/auto/corelib/tools/qlocale/tst_qlocale.cpp
@@ -118,8 +118,8 @@ private slots:
void monthName();
void standaloneMonthName();
- void defaultNumeringSystem_data();
- void defaultNumeringSystem();
+ void defaultNumberingSystem_data();
+ void defaultNumberingSystem();
void ampm_data();
void ampm();
@@ -2204,7 +2204,7 @@ void tst_QLocale::underflowOverflow()
QVERIFY(!ok);
}
-void tst_QLocale::defaultNumeringSystem_data()
+void tst_QLocale::defaultNumberingSystem_data()
{
QTest::addColumn<QString>("expect");
@@ -2221,7 +2221,7 @@ void tst_QLocale::defaultNumeringSystem_data()
QTest::newRow("kok_IN") << QStringLiteral("123");
}
-void tst_QLocale::defaultNumeringSystem()
+void tst_QLocale::defaultNumberingSystem()
{
QFETCH(QString, expect);
QLatin1String name(QTest::currentDataTag());