diff options
author | Trond Kjernåsen <trond@trolltech.com> | 2009-05-28 13:05:21 (GMT) |
---|---|---|
committer | Trond Kjernåsen <trond@trolltech.com> | 2009-05-28 13:11:25 (GMT) |
commit | 8e2d3cc2e84b6d8109c30a853ea40ff9cfa29bcc (patch) | |
tree | c5714e1010743e3883132446915402a1465d1bf1 /tests/auto/qdatastream | |
parent | 353afc392b843519023f27753b45b2e6fd9467ff (diff) | |
download | Qt-8e2d3cc2e84b6d8109c30a853ea40ff9cfa29bcc.zip Qt-8e2d3cc2e84b6d8109c30a853ea40ff9cfa29bcc.tar.gz Qt-8e2d3cc2e84b6d8109c30a853ea40ff9cfa29bcc.tar.bz2 |
Minor cleanup.
Reviewed-by: Kim
Diffstat (limited to 'tests/auto/qdatastream')
-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 d7ca7bc..6a69fcc 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; |