From 6ea739b2605a768657a5f8341c6a395c50d5a2b9 Mon Sep 17 00:00:00 2001 From: Perry Goy Date: Tue, 20 Feb 2024 14:08:16 -0600 Subject: [PATCH] remove test for removed functionality. --- tests/test_namespace.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tests/test_namespace.py b/tests/test_namespace.py index 570a04a..a0ec127 100644 --- a/tests/test_namespace.py +++ b/tests/test_namespace.py @@ -40,10 +40,3 @@ def test_questions() -> None: "Text", ] assert sorted(screenpy_playwright.questions.__all__) == sorted(expected) - - -def test_protocols() -> None: - expected = [ - "PageObject", - ] - assert sorted(screenpy_playwright.protocols.__all__) == sorted(expected)