aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/prompt-toolkit/py3/tests/test_cli.py
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2025-02-04 23:55:58 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2025-02-05 00:13:10 +0300
commite0149bcce6c022b2baaf22dc46dfad00080d041d (patch)
tree8d8629279ddbec4d3cbd1756cd1348c7c1d53706 /contrib/python/prompt-toolkit/py3/tests/test_cli.py
parent850bc4677d9c730e49444ba0fba91309d9cadd0b (diff)
downloadydb-e0149bcce6c022b2baaf22dc46dfad00080d041d.tar.gz
Intermediate changes
commit_hash:fe9cb645107d4e98cea6850ff89242dd287facbb
Diffstat (limited to 'contrib/python/prompt-toolkit/py3/tests/test_cli.py')
-rw-r--r--contrib/python/prompt-toolkit/py3/tests/test_cli.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/python/prompt-toolkit/py3/tests/test_cli.py b/contrib/python/prompt-toolkit/py3/tests/test_cli.py
index c155325f98..a876f2993b 100644
--- a/contrib/python/prompt-toolkit/py3/tests/test_cli.py
+++ b/contrib/python/prompt-toolkit/py3/tests/test_cli.py
@@ -870,11 +870,11 @@ def test_vi_temp_navigation_mode():
"""
feed = partial(_feed_cli_with_input, editing_mode=EditingMode.VI)
- result, cli = feed("abcde" "\x0f" "3h" "x\r") # c-o # 3 times to the left.
+ result, cli = feed("abcde\x0f3hx\r") # c-o # 3 times to the left.
assert result.text == "axbcde"
assert result.cursor_position == 2
- result, cli = feed("abcde" "\x0f" "b" "x\r") # c-o # One word backwards.
+ result, cli = feed("abcde\x0fbx\r") # c-o # One word backwards.
assert result.text == "xabcde"
assert result.cursor_position == 1