summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/kernel/qmimedata/tst_qmimedata.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/corelib/kernel/qmimedata/tst_qmimedata.cpp')
-rw-r--r--tests/auto/corelib/kernel/qmimedata/tst_qmimedata.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/auto/corelib/kernel/qmimedata/tst_qmimedata.cpp b/tests/auto/corelib/kernel/qmimedata/tst_qmimedata.cpp
index 310df58813..e1574c313a 100644
--- a/tests/auto/corelib/kernel/qmimedata/tst_qmimedata.cpp
+++ b/tests/auto/corelib/kernel/qmimedata/tst_qmimedata.cpp
@@ -312,7 +312,7 @@ void tst_QMimeData::setUrls() const
QList<QUrl> longUrlList;
// set up
- shortUrlList += QUrl("http://qt.nokia.com");
+ shortUrlList += QUrl("http://qt-project.org");
longUrlList = shortUrlList;
longUrlList += QUrl("http://www.google.com");
@@ -322,12 +322,12 @@ void tst_QMimeData::setUrls() const
// set a few, verify
mimeData.setUrls(shortUrlList);
QCOMPARE(mimeData.urls(), shortUrlList);
- QCOMPARE(mimeData.text(), QString("http://qt.nokia.com"));
+ QCOMPARE(mimeData.text(), QString("http://qt-project.org"));
// change them, verify
mimeData.setUrls(longUrlList);
QCOMPARE(mimeData.urls(), longUrlList);
- QCOMPARE(mimeData.text(), QString("http://qt.nokia.com\nhttp://www.google.com\n"));
+ QCOMPARE(mimeData.text(), QString("http://qt-project.org\nhttp://www.google.com\n"));
// clear, verify
mimeData.clear();