From ed99915bff26157f751a10696a9d71d4a65131c4 Mon Sep 17 00:00:00 2001 From: nowrep Date: Mon, 17 Feb 2014 20:18:10 +0100 Subject: [PATCH] [PACtest] qupzilla.com is now on own VPS --- tests/autotests/pactest.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/autotests/pactest.cpp b/tests/autotests/pactest.cpp index 2ad789565..0ec06363f 100644 --- a/tests/autotests/pactest.cpp +++ b/tests/autotests/pactest.cpp @@ -135,9 +135,9 @@ void PacTest::isInNetTest_data() QTest::newRow("doc2-3") << "128.94.249.79" << "198.95.0.0" << "255.255.0.0" << false; QTest::newRow("doc2-3") << "23.94.249.79" << "198.95.0.0" << "255.255.0.0" << false; - // is true if the IP address of host matches 85.118.128.* (qupzilla.com) + // is true if the IP address of host matches 46.36.35.* (qupzilla.com) // if host is passed as hostname, the function needs to resolve it - QTest::newRow("resolve1") << "qupzilla.com" << "85.118.128.38" << "255.255.255.0" << true; + QTest::newRow("resolve1") << "qupzilla.com" << "46.36.35.38" << "255.255.255.0" << true; QTest::newRow("resolve1-2") << "yahoo.com" << "173.194.70.0" << "255.255.255.0" << false; QTest::newRow("resolve1-3") << "netscape.com" << "173.194.70.0" << "255.255.255.0" << false; QTest::newRow("resolve1-4") << "mozilla.com" << "173.194.70.0" << "255.255.255.0" << false; @@ -160,7 +160,7 @@ void PacTest::dnsResolveTest_data() QTest::addColumn("result"); QTest::newRow("localhost") << "localhost" << ""; - QTest::newRow("qz") << "qupzilla.com" << "85.118.128.38"; // This may change... + QTest::newRow("qz") << "qupzilla.com" << "46.36.35.106"; // This may change... } void PacTest::dnsResolveTest()