summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmllanguage
diff options
context:
space:
mode:
authorWarwick Allison <warwick.allison@nokia.com>2009-10-15 03:25:52 (GMT)
committerWarwick Allison <warwick.allison@nokia.com>2009-10-15 03:25:52 (GMT)
commit2e1b1d35127c66a20645b65ae293299c5a67c4e9 (patch)
tree010e0572b2687b4e8e128c1e60e82a7ece86e163 /tests/auto/declarative/qmllanguage
parentf410aa58f93b27a5ba1b82e2f3a87d14338e22a4 (diff)
downloadQt-2e1b1d35127c66a20645b65ae293299c5a67c4e9.zip
Qt-2e1b1d35127c66a20645b65ae293299c5a67c4e9.tar.gz
Qt-2e1b1d35127c66a20645b65ae293299c5a67c4e9.tar.bz2
Fix (was creating lower-case).
Diffstat (limited to 'tests/auto/declarative/qmllanguage')
-rw-r--r--tests/auto/declarative/qmllanguage/tst_qmllanguage.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/declarative/qmllanguage/tst_qmllanguage.cpp b/tests/auto/declarative/qmllanguage/tst_qmllanguage.cpp
index b68d9bf..3dedb79 100644
--- a/tests/auto/declarative/qmllanguage/tst_qmllanguage.cpp
+++ b/tests/auto/declarative/qmllanguage/tst_qmllanguage.cpp
@@ -126,14 +126,14 @@ void tst_qmllanguage::initTestCase()
// For utf-8 locale, this will be data/I18nType??????????.qml where ?????????? is 5 8-bit characters, UTF-8 encoded
QFile in(TEST_FILE(QLatin1String("I18nType30.qml")).toLocalFile());
QVERIFY(in.open(QIODevice::ReadOnly));
- QFile out(TEST_FILE(QString::fromUtf8("I18nType\303\241\303\242\303\243\303\244\303\245.qml")).toLocalFile());
+ QFile out(TEST_FILE(QString::fromUtf8("I18nType\303\201\303\242\303\243\303\244\303\245.qml")).toLocalFile());
QVERIFY(out.open(QIODevice::WriteOnly));
out.write(in.readAll());
}
void tst_qmllanguage::cleanupTestCase()
{
- QVERIFY(QFile::remove(TEST_FILE(QString::fromUtf8("I18nType\303\241\303\242\303\243\303\244\303\245.qml")).toLocalFile()));
+ QVERIFY(QFile::remove(TEST_FILE(QString::fromUtf8("I18nType\303\201\303\242\303\243\303\244\303\245.qml")).toLocalFile()));
}
void tst_qmllanguage::errors_data()