Skip to content

Commit 9938f15

Browse files
committed
[py] fix linting errors
1 parent 164497a commit 9938f15

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

py/test/unit/selenium/webdriver/common/common_options_tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,6 @@ def test_enable_bidi():
9292

9393
def test_set_socket_url():
9494
options = ArgOptions()
95-
options.web_socket_url = 'socket_url'
95+
options.web_socket_url = "socket_url"
9696
assert options.enable_bidi is True
97-
assert options.web_socket_url is 'socket_url'
97+
assert options.web_socket_url == "socket_url"

0 commit comments

Comments
 (0)