summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/unit/config/test_qtargs.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/unit/config/test_qtargs.py b/tests/unit/config/test_qtargs.py
index 9d24b97a5..286caa369 100644
--- a/tests/unit/config/test_qtargs.py
+++ b/tests/unit/config/test_qtargs.py
@@ -508,15 +508,14 @@ class TestWebEngineArgs:
for arg in expected:
assert arg in args
- def test_locale_workaround(self, config_stub, monkeypatch, version_patcher,
- parser):
+ @pytest.mark.linux
+ def test_locale_workaround(self, config_stub, monkeypatch, version_patcher, parser):
class FakeLocale:
def bcp47Name(self):
return 'de-CH'
monkeypatch.setattr(qtargs, 'QLocale', FakeLocale)
- monkeypatch.setattr(qtargs.utils, 'is_linux', True)
version_patcher('5.15.3')
config_stub.val.qt.workarounds.locale = True