summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2023-06-24 20:14:53 +0200
committerFlorian Bruhin <me@the-compiler.org>2023-06-30 19:29:28 +0200
commit342cd9585ad3b7a3dbb6a205e705b8984ea4bb72 (patch)
treeb7cfc2a0c93cf1df0d72293d109d5257e9dce68c /tests
parentb5d5c7f4d35e624abb30a1d585d30596637bea94 (diff)
downloadqutebrowser-342cd9585ad3b7a3dbb6a205e705b8984ea4bb72.tar.gz
qutebrowser-342cd9585ad3b7a3dbb6a205e705b8984ea4bb72.zip
Fix mypy
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/test_qt_machinery.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/test_qt_machinery.py b/tests/unit/test_qt_machinery.py
index b144af030..e455ba9ca 100644
--- a/tests/unit/test_qt_machinery.py
+++ b/tests/unit/test_qt_machinery.py
@@ -380,7 +380,7 @@ class TestSelectWrapper:
def test_invalid_override(self, monkeypatch: pytest.MonkeyPatch):
monkeypatch.setattr(machinery, "_WRAPPER_OVERRIDE", "invalid")
- with pytest.raises(AssertionError, match="invalid"):
+ with pytest.raises(AssertionError):
machinery._select_wrapper(args=None)