summaryrefslogtreecommitdiff
path: root/tests/end2end/fixtures/quteprocess.py
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-02-10 10:33:08 +0100
committerFlorian Bruhin <me@the-compiler.org>2021-02-10 16:13:22 +0100
commitd1164925c55f2417f1c3130b0196830bc2a3d25d (patch)
treea848de82fc6b03aeea6a5b5637a4301d4b01e2ff /tests/end2end/fixtures/quteprocess.py
parented4f82217c1a11f05844ce892ada819a9e49cde6 (diff)
downloadqutebrowser-d1164925c55f2417f1c3130b0196830bc2a3d25d.tar.gz
qutebrowser-d1164925c55f2417f1c3130b0196830bc2a3d25d.zip
tests: Fix ignored messages
Those are patterns, not regexes...
Diffstat (limited to 'tests/end2end/fixtures/quteprocess.py')
-rw-r--r--tests/end2end/fixtures/quteprocess.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py
index 7d9d7c8c2..f5592ac9c 100644
--- a/tests/end2end/fixtures/quteprocess.py
+++ b/tests/end2end/fixtures/quteprocess.py
@@ -337,11 +337,11 @@ def is_ignored_chromium_message(line):
# Windows N:
# https://github.com/microsoft/playwright/issues/2901
- (r'DXVAVDA fatal error: could not LoadLibrary: .*: The specified '
- r'module could not be found. \(0x7E\)'),
+ ('DXVAVDA fatal error: could not LoadLibrary: *: The specified '
+ 'module could not be found. (0x7E)'),
# Qt 5.15.3 dev build
- r'Duplicate id found. Reassigning from \d+ to \d+',
+ r'Duplicate id found. Reassigning from * to *',
]
return any(testutils.pattern_match(pattern=pattern, value=message)
for pattern in ignored_messages)