summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason McDonald <jason.mcdonald@nokia.com>2011-11-21 17:26:08 +1000
committerQt by Nokia <qt-info@nokia.com>2011-11-22 00:33:38 +0100
commitcf1de2f07256e50b311eb28ebbcfbc0f9d984285 (patch)
treee8e21e54bf35838326f835663da82640a229d451
parente026cbefc6b68079ad5b9873ced4750d0dd32816 (diff)
Restore commented-out data in QString test.
The restored test data was commented-out before the tests were imported into the Qt repository in 2006, but appears to be valid and passes on Linux. Change-Id: I75795bf2b0b45fc2331bca6ac8d89f57cf12ed3d Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
-rw-r--r--tests/auto/corelib/tools/qstring/tst_qstring.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/corelib/tools/qstring/tst_qstring.cpp b/tests/auto/corelib/tools/qstring/tst_qstring.cpp
index c9cadadd77..45df14b560 100644
--- a/tests/auto/corelib/tools/qstring/tst_qstring.cpp
+++ b/tests/auto/corelib/tools/qstring/tst_qstring.cpp
@@ -4017,7 +4017,7 @@ void tst_QString::double_conversion_data()
QTest::addColumn<QString>("num_str");
QTest::addColumn<bool>("good");
QTest::addColumn<double>("num");
-/*
+
// The good...
QTest::newRow("C 1") << QString("C") << QString("1") << true << 1.0;
@@ -4081,7 +4081,7 @@ void tst_QString::double_conversion_data()
QTest::newRow("C 1 ") << QString("C") << QString("1 ") << true << 1.0;
QTest::newRow("de_DE 1") << QString("de_DE") << QString(" 1") << true << 1.0;
QTest::newRow("de_DE 1 ") << QString("de_DE") << QString("1 ") << true << 1.0;
-*/
+
// Let's try some Arabic
const quint16 arabic_str[] = { 0x0660, 0x066B, 0x0661, 0x0662,
0x0663, 0x0664, 0x0065, 0x0662,