Skip to content

Commit 17461ce

Browse files
authored
[py] Fix code formatting selenium_manager_tests.py (#15413)
1 parent d7a011c commit 17461ce

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

py/test/selenium/webdriver/common/selenium_manager_tests.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,10 @@ def test_gets_results(monkeypatch):
3131
expected_output = {"driver_path": "/path/to/driver"}
3232
lib_path = "selenium.webdriver.common.selenium_manager.SeleniumManager"
3333

34-
with mock.patch(lib_path + "._get_binary", return_value="/path/to/sm") as mock_get_binary, mock.patch(
35-
lib_path + "._run", return_value=expected_output
36-
) as mock_run:
34+
with (
35+
mock.patch(lib_path + "._get_binary", return_value="/path/to/sm") as mock_get_binary,
36+
mock.patch(lib_path + "._run", return_value=expected_output) as mock_run,
37+
):
3738
SeleniumManager().binary_paths([])
3839

3940
mock_get_binary.assert_called_once()

0 commit comments

Comments
 (0)