From d4899240de0c7966ebcfa08659821b62e20d45a8 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 26 Mar 2018 10:51:04 +0200 Subject: [PATCH] Break long lines --- tests/unit/misc/test_keyhints.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/unit/misc/test_keyhints.py b/tests/unit/misc/test_keyhints.py index 9ac6e6221..7c9727b65 100644 --- a/tests/unit/misc/test_keyhints.py +++ b/tests/unit/misc/test_keyhints.py @@ -112,8 +112,10 @@ def test_suggestions_special(keyhint, config_stub): assert keyhint.text() == expected_text( ('<Ctrl+c>', 'yellow', 'a', 'message-info cmd-Cca'), ('<Ctrl+c>', 'yellow', 'c', 'message-info cmd-Ccc'), - ('<Ctrl+c>', 'yellow', '<Ctrl+c>', 'message-info cmd-CcCc'), - ('<Ctrl+c>', 'yellow', '<Ctrl+x>', 'message-info cmd-CcCx')) + ('<Ctrl+c>', 'yellow', '<Ctrl+c>', + 'message-info cmd-CcCc'), + ('<Ctrl+c>', 'yellow', '<Ctrl+x>', + 'message-info cmd-CcCx')) def test_suggestions_with_count(keyhint, config_stub, monkeypatch, stubs):