From e216c368bd766f891fa84d900fce28248a4a601c Mon Sep 17 00:00:00 2001 From: gruhn Date: Sun, 1 Dec 2024 17:12:53 +0100 Subject: [PATCH] fix: typo --- test/test_web.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/test_web.py b/test/test_web.py index 924bc0b..d0e8d05 100644 --- a/test/test_web.py +++ b/test/test_web.py @@ -53,8 +53,7 @@ def __repr__(self): return f"StatusTestInterface({self.name})" -@unittest.skipIf(shutil.which("geckodriver") is None, - "Selenium's geckodriver is not available in PATH") +@unittest.skipIf(shutil.which("geckodriver") is None, "Selenium's geckodriver is not available in PATH") class AbstractWebTest(unittest.TestCase): driver: webdriver.Firefox