summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-03-19 10:12:22 +0100
committerFlorian Bruhin <me@the-compiler.org>2021-03-19 17:59:47 +0100
commit16513e9004ff61c2f049e4fcc33538436b2e0a0d (patch)
tree367537eb0caa6c6431180ef208d781cdafaefaf1
parentde803571a9404a8310d6ef18e4712f0920957a8a (diff)
downloadqutebrowser-16513e9004ff61c2f049e4fcc33538436b2e0a0d.tar.gz
qutebrowser-16513e9004ff61c2f049e4fcc33538436b2e0a0d.zip
tests: Don't disable cert verification for QtWebKit
This was added in d385206ea0d3470826242fcda79f1917e8746cda 'to not hang on unexpected SSL errors', but there is no reason those should happen in tests.
-rw-r--r--tests/end2end/fixtures/quteprocess.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py
index 45d800b3a..e998e0a1a 100644
--- a/tests/end2end/fixtures/quteprocess.py
+++ b/tests/end2end/fixtures/quteprocess.py
@@ -647,9 +647,6 @@ class QuteProc(testprocess.Process):
('auto_save.interval', '0'),
('new_instance_open_target_window', 'last-opened')
]
- # FIXME needed?
- if not self.request.config.webengine:
- settings.append(('content.tls.certificate_errors', 'load-insecurely'))
for opt, value in settings:
self.set_setting(opt, value)