From 8d22991d037f4e716a3d5fdb16bbd11a5114266a Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 27 Feb 2017 15:12:38 +0100 Subject: [PATCH] Fix test_qt_args --- tests/end2end/test_invocations.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/end2end/test_invocations.py b/tests/end2end/test_invocations.py index a22d546c5..bdde54f64 100644 --- a/tests/end2end/test_invocations.py +++ b/tests/end2end/test_invocations.py @@ -189,8 +189,8 @@ def test_version(request): def test_qt_arg(request, quteproc_new, tmpdir): """Test --qt-arg.""" - args = (_base_args(request.config) + - ['--qt-arg', 'stylesheet', str(tmpdir / 'does-not-exist')]) + args = (['--temp-basedir', '--qt-arg', 'stylesheet', + str(tmpdir / 'does-not-exist')] + _base_args(request.config)) quteproc_new.start(args) msg = 'QCss::Parser - Failed to load file "*does-not-exist"'