From ac8fb03b803201492ac30964582f6657de327627 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 10 Jul 2017 20:37:30 +0200 Subject: [PATCH] Fix lint --- tests/end2end/test_invocations.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/end2end/test_invocations.py b/tests/end2end/test_invocations.py index 63b0b5ac3..5c5a7fbc2 100644 --- a/tests/end2end/test_invocations.py +++ b/tests/end2end/test_invocations.py @@ -312,7 +312,8 @@ def test_qute_settings_persistence(short_tmpdir, request, quteproc_new): """Make sure settings from qute://settings are persistent.""" args = _base_args(request.config) + ['--basedir', str(short_tmpdir)] quteproc_new.start(args) - quteproc_new.open_path('qute://settings/set?option=ignore_case&value=always') + quteproc_new.open_path( + 'qute://settings/set?option=ignore_case&value=always') assert quteproc_new.get_setting('ignore_case') == 'always' quteproc_new.send_cmd(':quit')