Fix a couple of copy/paste-o docstrings

This commit is contained in:
Dave Pearson
2023-02-23 21:30:06 +00:00
parent 236266248d
commit d341b8b1b8
2 changed files with 2 additions and 2 deletions

View File

@@ -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()

View File

@@ -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()