Remove mentions of Trolltech from QRegExp autotest.
authorJason McDonald <jason.mcdonald@nokia.com>
Wed, 21 Dec 2011 01:26:26 +0000 (11:26 +1000)
committerQt by Nokia <qt-info@nokia.com>
Wed, 28 Dec 2011 03:47:56 +0000 (04:47 +0100)
Task-number: QTBUG-19653

Change-Id: I55ae6bed6fb2177cdc842de34ef31ae98d0d3237
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
tests/auto/corelib/tools/qregexp/tst_qregexp.cpp

index d66e6b3..b183f9f 100644 (file)
@@ -348,7 +348,7 @@ void tst_QRegExp::indexIn_addMoreRows(const QByteArray &stri)
 
         // miscellaneous
         QTest::newRow( stri + "misc00" ) << QString(email)
-                                << QString("troll1@trolltech.com") << 0 << 20
+                                << QString("email123@example.com") << 0 << 20
                                 << QStringList();
         QTest::newRow( stri + "misc01" ) << QString("[0-9]*\\.[0-9]+") << QString("pi = 3.14") << 5 << 4
                                 << QStringList();
@@ -791,7 +791,7 @@ void tst_QRegExp::wildcard_data()
     QTest::newRow( "data0" ) << QString("*.html") << QString("test.html") << 0;
     QTest::newRow( "data1" ) << QString("*.html") << QString("test.htm") << -1;
     QTest::newRow( "data2" ) << QString("bar*") << QString("foobarbaz") << 3;
-    QTest::newRow( "data3" ) << QString("*") << QString("Trolltech") << 0;
+    QTest::newRow( "data3" ) << QString("*") << QString("Qt Rocks!") << 0;
     QTest::newRow( "data4" ) << QString(".html") << QString("test.html") << 4;
     QTest::newRow( "data5" ) << QString(".h") << QString("test.cpp") << -1;
     QTest::newRow( "data6" ) << QString(".???l") << QString("test.html") << 4;