Skip to content

Commit

Permalink
Fix Black warning
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Nov 3, 2023
1 parent 99b5ccb commit 6749a61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def test_emacs_cursor_movements():
def test_emacs_kill_multiple_words_and_paste():
# Using control-w twice should place both words on the clipboard.
result, cli = _feed_cli_with_input(
"hello world test" "\x17\x17" "--\x19\x19\r" # Twice c-w. # Twice c-y.
"hello world test\x17\x17--\x19\x19\r" # Twice c-w. Twice c-y.
)
assert result.text == "hello --world testworld test"
assert cli.clipboard.get_data().text == "world test"
Expand Down

0 comments on commit 6749a61

Please sign in to comment.