summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2018-06-07 12:49:49 +0200
committerFlorian Bruhin <git@the-compiler.org>2018-06-07 14:36:03 +0200
commitb0f4cc6924e67ff8e68d14f56ff9622afdf2db93 (patch)
treea45a7681ba5746cb3d6a7094470b6a9606b12ce0
parent218637af844cd7a918c7bd8e19d4f31813898401 (diff)
downloadqutebrowser-b0f4cc6924e67ff8e68d14f56ff9622afdf2db93.tar.gz
qutebrowser-b0f4cc6924e67ff8e68d14f56ff9622afdf2db93.zip
Use a valid scheme in invalid_link.html
This is to avoid triggering QTBUG-63378 which fails differently with a custom scheme. See #3661 (cherry picked from commit d059197bc96f82d25c06089d177975397ce38dfd)
-rw-r--r--tests/end2end/data/invalid_link.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/end2end/data/invalid_link.html b/tests/end2end/data/invalid_link.html
index f4e572b16..8a726ca4c 100644
--- a/tests/end2end/data/invalid_link.html
+++ b/tests/end2end/data/invalid_link.html
@@ -6,6 +6,7 @@
<title>Invalid link</title>
</head>
<body>
- <a href="what://::">I'm broken</a>
+ <a href="http://::">I'm broken</a>
+ <a href="foo://bar">Unknown scheme</a>
</body>
</html>