Skip to content

Commit 01bac7c

Browse files
committed
[py] Removed unused reference to fixture
1 parent 8009c81 commit 01bac7c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

py/test/selenium/webdriver/chrome/chrome_service_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def test_log_output_null_default(driver, capfd) -> None:
109109

110110

111111
@pytest.mark.no_driver_after_test
112-
def test_driver_is_stopped_if_browser_cant_start(clean_driver, driver_executable) -> None:
112+
def test_driver_is_stopped_if_browser_cant_start(clean_driver) -> None:
113113
options = Options()
114114
options.add_argument("--user-data-dir=/no/such/location")
115115
service = Service()

py/test/selenium/webdriver/edge/edge_service_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def test_log_output_null_default(driver, capfd) -> None:
109109

110110

111111
@pytest.mark.no_driver_after_test
112-
def test_driver_is_stopped_if_browser_cant_start(clean_driver, driver_executable) -> None:
112+
def test_driver_is_stopped_if_browser_cant_start(clean_driver) -> None:
113113
options = Options()
114114
options.add_argument("--user-data-dir=/no/such/location")
115115
service = Service()

py/test/selenium/webdriver/firefox/firefox_service_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def test_log_output_as_stdout(capfd) -> None:
6464
driver.quit()
6565

6666

67-
def test_driver_is_stopped_if_browser_cant_start(clean_driver, driver_executable) -> None:
67+
def test_driver_is_stopped_if_browser_cant_start(clean_driver) -> None:
6868
options = Options()
6969
options.add_argument("-profile==/no/such/location")
7070
service = Service()

0 commit comments

Comments
 (0)