From a9dfe71cca38e6b62445292ed2c6ec1c8224430a Mon Sep 17 00:00:00 2001 From: Edward Welbourne Date: Fri, 13 Jul 2018 16:03:25 +0200 Subject: [PATCH] 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 --- tests/auto/corelib/tools/qlocale/tst_qlocale.cpp | 8 ++++---- 1 file 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 4162fc657b9..06706e7ee87 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("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());