Skip to content

Commit 7a2b6c1

Browse files
committed
[py] Use new fixture
1 parent d81538d commit 7a2b6c1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

py/test/selenium/webdriver/chrome/chrome_launcher_tests.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919

2020

2121
@pytest.mark.no_driver_after_test
22-
def test_launch_and_close_browser(clean_driver, clean_service, clean_options):
23-
driver = clean_driver(service=clean_service)
22+
def test_launch_and_close_browser(clean_driver, clean_options, clean_service):
23+
driver = clean_driver(options=clean_options, service=clean_service)
2424
driver.quit()
2525

2626

2727
@pytest.mark.no_driver_after_test
28-
def test_we_can_launch_multiple_chrome_instances(clean_driver, clean_service, clean_options):
28+
def test_we_can_launch_multiple_chrome_instances(clean_driver, clean_options, clean_service):
2929
driver1 = clean_driver(options=clean_options, service=clean_service)
3030
driver2 = clean_driver(options=clean_options, service=clean_service)
3131
driver3 = clean_driver(options=clean_options, service=clean_service)

0 commit comments

Comments
 (0)