diff --git a/tests/snapshot_tests/test_snapshots.py b/tests/snapshot_tests/test_snapshots.py index 6f9aabbcc..130ff19f3 100644 --- a/tests/snapshot_tests/test_snapshots.py +++ b/tests/snapshot_tests/test_snapshots.py @@ -232,9 +232,13 @@ def test_progress_bar_completed_styled(snap_compare): def test_select(snap_compare): assert snap_compare(WIDGET_EXAMPLES_DIR / "select_widget.py") -def test_selection_list(snap_compare): +def test_selection_list_selected(snap_compare): assert snap_compare(WIDGET_EXAMPLES_DIR / "selection_list_selected.py") + +def test_selection_list_selections(snap_compare): assert snap_compare(WIDGET_EXAMPLES_DIR / "selection_list_selections.py") + +def test_selection_list_tuples(snap_compare): assert snap_compare(WIDGET_EXAMPLES_DIR / "selection_list_tuples.py") def test_select_expanded(snap_compare):