From f0eb284edb1494ee7b107fd05d4a1f17fae23b37 Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Tue, 13 Dec 2022 10:42:48 +0000 Subject: [PATCH] Correct a test description --- tests/test_binding_inheritance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_binding_inheritance.py b/tests/test_binding_inheritance.py index 17825baec..0b48b5bd8 100644 --- a/tests/test_binding_inheritance.py +++ b/tests/test_binding_inheritance.py @@ -77,7 +77,7 @@ class AppWithScreenThatHasABinding(App[None]): reason="Screen is incorrectly starting with bindings for movement keys [issue#1343]" ) async def test_app_screen_with_bindings() -> None: - """An app with a screen and a binding should only have ctrl+c as a binding.""" + """A screen with a single alpha key binding should only have that key as a binding.""" async with AppWithScreenThatHasABinding().run_test() as pilot: assert list(pilot.app.screen._bindings.keys.keys()) == ["a"]