diff options
author | Trond Kjernåsen <trond@trolltech.com> | 2009-05-28 13:05:21 (GMT) |
---|---|---|
committer | Jason McDonald <jason.mcdonald@nokia.com> | 2009-05-29 03:44:43 (GMT) |
commit | 9e531437c10cbe420eeb7277e70c2252ee0ffc18 (patch) | |
tree | c339bb2e5651c406601385f14a6221d09ace07da | |
parent | 64dcf1e6d94a2e4607fa8083964b71cd8dccad36 (diff) | |
download | Qt-9e531437c10cbe420eeb7277e70c2252ee0ffc18.zip Qt-9e531437c10cbe420eeb7277e70c2252ee0ffc18.tar.gz Qt-9e531437c10cbe420eeb7277e70c2252ee0ffc18.tar.bz2 |
Minor cleanup.
Reviewed-by: Kim
(cherry picked from commit 8e2d3cc2e84b6d8109c30a853ea40ff9cfa29bcc)
-rw-r--r-- | tests/auto/qdatastream/tst_qdatastream.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/auto/qdatastream/tst_qdatastream.cpp b/tests/auto/qdatastream/tst_qdatastream.cpp index b7d131a..8f9e5c9 100644 --- a/tests/auto/qdatastream/tst_qdatastream.cpp +++ b/tests/auto/qdatastream/tst_qdatastream.cpp @@ -462,7 +462,7 @@ void tst_QDataStream::writeQString(QDataStream* s) { QString test(QStringData(dataIndex(QTest::currentDataTag()))); *s << test; - *s << QString("Faen her spyr man"); + *s << QString("Her er det noe tekst"); *s << test; *s << QString(); *s << test; @@ -480,7 +480,7 @@ void tst_QDataStream::readQString(QDataStream *s) *s >> S; QCOMPARE(S, test); *s >> S; - QCOMPARE(S, QString("Faen her spyr man")); + QCOMPARE(S, QString("Her er det noe tekst")); *s >> S; QCOMPARE(S, test); *s >> S; @@ -533,7 +533,7 @@ void tst_QDataStream::writeQRegExp(QDataStream* s) { QRegExp test(QRegExpData(dataIndex(QTest::currentDataTag()))); *s << test; - *s << QString("Faen her spyr man"); + *s << QString("Her er det noe tekst"); *s << test; *s << QString("nonempty"); *s << test; @@ -550,7 +550,7 @@ void tst_QDataStream::readQRegExp(QDataStream *s) *s >> R; QCOMPARE(R, test); *s >> S; - QCOMPARE(S, QString("Faen her spyr man")); + QCOMPARE(S, QString("Her er det noe tekst")); *s >> R; QCOMPARE(R, test); *s >> S; |