summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorEl Mehdi Fekari <mfekari@rim.com>2013-02-13 17:52:45 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-02-15 16:32:20 +0100
commit6e7d5fa639d5129151098c5a153e0d2b408bf24c (patch)
tree177f95c1c45bb8336ec13eb6b5a95c9aad3cdb58 /tests
parentc03d47e9277a922886d84a0005e5cf7a75d3398b (diff)
QLocale: Update tamil's AM/PM text
Change-Id: I355d24fcaaf2c76b8bdbc51f71f931118f5cb3cd Reviewed-by: Lars Knoll <lars.knoll@digia.com> Reviewed-by: Konstantin Ritt <ritt.ks@gmail.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qlocale/tst_qlocale.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/qlocale/tst_qlocale.cpp b/tests/auto/qlocale/tst_qlocale.cpp
index 572d7f186e..e7bc6f429a 100644
--- a/tests/auto/qlocale/tst_qlocale.cpp
+++ b/tests/auto/qlocale/tst_qlocale.cpp
@@ -1825,6 +1825,10 @@ void tst_QLocale::ampm()
QLocale id("id_ID");
QCOMPARE(id.amText(), QLatin1String("AM"));
QCOMPARE(id.pmText(), QLatin1String("PM"));
+
+ QLocale ta("ta_LK");
+ QCOMPARE(ta.amText(), QLatin1String("AM"));
+ QCOMPARE(ta.pmText(), QLatin1String("PM"));
}
void tst_QLocale::dateFormat()