Skip to content

Commit 72ff2e8

Browse files
committed
[py] Ignore linting error
1 parent fbd8976 commit 72ff2e8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

py/test/selenium/webdriver/firefox/firefox_sizing_tests.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ def is_running_wayland():
3232

3333

3434
@pytest.mark.skipif(not is_running_wayland(), reason="This test only runs on Linux under Wayland")
35-
def test_firefox_opens_large_when_running_xwayland(request):
35+
def test_firefox_opens_large_when_running_xwayland(request): # noqa: F821
36+
print("REQQQQ")
37+
print(request)
3638
options = Options()
3739
if request.config.getoption("--headless"):
3840
options.add_argument("-headless")
@@ -51,7 +53,7 @@ def test_firefox_opens_large_when_running_xwayland(request):
5153
@pytest.mark.skipif(not is_running_wayland(), reason="This test only runs on Linux under Wayland")
5254
@pytest.mark.xfail(reason="https://bugzilla.mozilla.org/show_bug.cgi?id=1959040")
5355
# Firefox opens in a small window when running on Linux/Wayland
54-
def test_firefox_opens_large_when_running_wayland():
56+
def test_firefox_opens_large_when_running_wayland(request): # noqa: F821
5557
options = Options()
5658
if request.config.getoption("--headless"):
5759
options.add_argument("-headless")

0 commit comments

Comments
 (0)