From af4a6b0f68f4e2793cf1f527a4650166f367007e Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Sun, 29 Jan 2023 11:48:48 +0000 Subject: [PATCH] Fix a typo/thinko in a test name --- tests/input/test_input_key_actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/input/test_input_key_actions.py b/tests/input/test_input_key_actions.py index bcdce2020..43f82203e 100644 --- a/tests/input/test_input_key_actions.py +++ b/tests/input/test_input_key_actions.py @@ -108,7 +108,7 @@ async def test_input_right_word_from_start() -> None: assert input.cursor_position == expected_at[input.id] -async def test_input_right_word_from_home() -> None: +async def test_input_right_word_from_end() -> None: """Going right one word from the end should do nothing.""" async with InputTester().run_test() as pilot: for input in pilot.app.query(Input):