diff --git a/tests/selection_list/test_selection_list_create.py b/tests/selection_list/test_selection_list_create.py index 492b4756b..1a4982c29 100644 --- a/tests/selection_list/test_selection_list_create.py +++ b/tests/selection_list/test_selection_list_create.py @@ -71,3 +71,7 @@ async def test_add_non_selections() -> None: selections.add_option(Option("Nope")) with pytest.raises(SelectionError): selections.add_option("Nope") + with pytest.raises(SelectionError): + selections.add_option(("Nope",)) + with pytest.raises(SelectionError): + selections.add_option(("Nope", 0, False, 23))