We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99b5ccb commit 6749a61Copy full SHA for 6749a61
tests/test_cli.py
@@ -190,7 +190,7 @@ def test_emacs_cursor_movements():
190
def test_emacs_kill_multiple_words_and_paste():
191
# Using control-w twice should place both words on the clipboard.
192
result, cli = _feed_cli_with_input(
193
- "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.
194
)
195
assert result.text == "hello --world testworld test"
196
assert cli.clipboard.get_data().text == "world test"
0 commit comments