From 21a10fcb17859480ff1b86cee2d73c3fa5cf1af0 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Sun, 17 Sep 2017 16:33:37 +0200 Subject: [PATCH] Break up long line --- tests/end2end/features/test_history_bdd.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/end2end/features/test_history_bdd.py b/tests/end2end/features/test_history_bdd.py index e4bfbd9e2..debf72d09 100644 --- a/tests/end2end/features/test_history_bdd.py +++ b/tests/end2end/features/test_history_bdd.py @@ -29,7 +29,8 @@ bdd.scenarios('history.feature') @pytest.fixture(autouse=True) def turn_on_sql_history(quteproc): """Make sure SQL writing is enabled for tests in this module.""" - quteproc.send_cmd(":debug-pyeval objreg.get('args').debug_flags.remove('no-sql-history')") + quteproc.send_cmd(":debug-pyeval objreg.get('args')." + "debug_flags.remove('no-sql-history')") quteproc.wait_for_load_finished_url('qute://pyeval')