Skip to content

Commit 6749a61

Browse files
committed
Fix Black warning
1 parent 99b5ccb commit 6749a61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def test_emacs_cursor_movements():
190190
def test_emacs_kill_multiple_words_and_paste():
191191
# Using control-w twice should place both words on the clipboard.
192192
result, cli = _feed_cli_with_input(
193-
"hello world test" "\x17\x17" "--\x19\x19\r" # Twice c-w. # Twice c-y.
193+
"hello world test\x17\x17--\x19\x19\r" # Twice c-w. Twice c-y.
194194
)
195195
assert result.text == "hello --world testworld test"
196196
assert cli.clipboard.get_data().text == "world test"

0 commit comments

Comments
 (0)