From d341b8b1b89852a0c69d966ac8ed7aa8087cda5e Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Thu, 23 Feb 2023 21:30:06 +0000 Subject: [PATCH] Fix a couple of copy/paste-o docstrings --- tests/toggles/test_checkbox.py | 2 +- tests/toggles/test_radiobutton.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/toggles/test_checkbox.py b/tests/toggles/test_checkbox.py index fcfe3b172..645397b05 100644 --- a/tests/toggles/test_checkbox.py +++ b/tests/toggles/test_checkbox.py @@ -31,7 +31,7 @@ async def test_checkbox_initial_state() -> None: async def test_checkbox_toggle() -> None: - """The initial states of the check boxes should be as we specified.""" + """The states of the check boxes after they've been toggled.""" async with CheckboxApp().run_test() as pilot: for box in pilot.app.query(Checkbox): box.toggle() diff --git a/tests/toggles/test_radiobutton.py b/tests/toggles/test_radiobutton.py index db10b42f4..3e1e1c9b3 100644 --- a/tests/toggles/test_radiobutton.py +++ b/tests/toggles/test_radiobutton.py @@ -35,7 +35,7 @@ async def test_radio_button_initial_state() -> None: async def test_radio_button_toggle() -> None: - """The initial states of the radio buttons should be as we specified.""" + """The states of the radio buttons after they've been toggled.""" async with RadioButtonApp().run_test() as pilot: for box in pilot.app.query(RadioButton): box.toggle()