summaryrefslogtreecommitdiffstats
path: root/tests/auto/network
diff options
context:
space:
mode:
authorEdward Welbourne <edward.welbourne@qt.io>2020-11-05 12:32:20 +0100
committerEdward Welbourne <edward.welbourne@qt.io>2020-11-08 13:02:30 +0100
commitb867daf6fad05804d95a2dfb53f3f39c26e56277 (patch)
tree400ab66c6103a60af8fe8220122372919e417470 /tests/auto/network
parent0ebda39e065ec91dcd41a768aea9319591b5bcc0 (diff)
Update public suffix list header to latest version
The former *.platform.sh entry has been replaced by more specific entries, replacing the wildcard with only selected second levels. Task-number: QTBUG-87925 Change-Id: Ie4ba7c66ba9aa40eafe23f02faa12f19d791cff2 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'tests/auto/network')
-rw-r--r--tests/auto/network/access/qnetworkcookiejar/tst_qnetworkcookiejar.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/auto/network/access/qnetworkcookiejar/tst_qnetworkcookiejar.cpp b/tests/auto/network/access/qnetworkcookiejar/tst_qnetworkcookiejar.cpp
index 6b2df3cce4..0257884b65 100644
--- a/tests/auto/network/access/qnetworkcookiejar/tst_qnetworkcookiejar.cpp
+++ b/tests/auto/network/access/qnetworkcookiejar/tst_qnetworkcookiejar.cpp
@@ -477,7 +477,8 @@ void tst_QNetworkCookieJar::effectiveTLDs_data()
QTest::newRow("no-wildcard3") << "whatever.uk" << false; // was changed at some point
QTest::newRow("yes-wildcard4") << "anything.sendai.jp" << true;
QTest::newRow("yes-wildcard5") << "foo.sch.uk" << true;
- QTest::newRow("yes-wildcard6") << "something.platform.sh" << true;
+ QTest::newRow("yes-platform.sh") << "eu.platform.sh" << true;
+ QTest::newRow("no-platform.sh") << "something.platform.sh" << false;
int i;
for (i = 0; tldIndices[i] < tldChunks[0]; i++) { }