Skip to content

Commit 636b0e3

Browse files
committed
[py] Fix formatting
1 parent e9a1595 commit 636b0e3

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,9 @@ def test_log_output_null_default(driver, capfd) -> None:
108108
driver.quit()
109109

110110

111-
@pytest.mark.xfail(sys.platform == "win32", reason="chromedriver doesn't return an error on windows if you use an invalid profile path")
111+
@pytest.mark.xfail(
112+
sys.platform == "win32", reason="chromedriver doesn't return an error on windows if you use an invalid profile path"
113+
)
112114
@pytest.mark.no_driver_after_test
113115
def test_driver_is_stopped_if_browser_cant_start(clean_driver, clean_options, driver_executable) -> None:
114116
clean_options.add_argument("--user-data-dir=/no/such/location")

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,9 @@ def test_log_output_null_default(driver, capfd) -> None:
108108
driver.quit()
109109

110110

111-
@pytest.mark.xfail(sys.platform == "win32", reason="edgedriver doesn't return an error on windows if you use an invalid profile path")
111+
@pytest.mark.xfail(
112+
sys.platform == "win32", reason="edgedriver doesn't return an error on windows if you use an invalid profile path"
113+
)
112114
@pytest.mark.no_driver_after_test
113115
def test_driver_is_stopped_if_browser_cant_start(clean_driver, clean_options, clean_service, driver_executable) -> None:
114116
clean_options.add_argument("--user-data-dir=/no/such/location")

0 commit comments

Comments
 (0)