Skip to content

Commit b8c6d7e

Browse files
committed
[py] Fix linting error
1 parent 0872d32 commit b8c6d7e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

py/test/selenium/webdriver/remote/remote_custom_locator_tests.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ def test_find_element_with_custom_locator(custom_locator_driver):
5050

5151

5252
def test_find_elements_with_custom_locator(custom_locator_driver):
53-
custom_locator_driver.get("data:text/html,<div custom-attr='example'>Test1</div><div custom-attr='example'>Test2</div>")
53+
custom_locator_driver.get(
54+
"data:text/html,<div custom-attr='example'>Test1</div><div custom-attr='example'>Test2</div>"
55+
)
5456
elements = custom_locator_driver.find_elements("custom", "example")
5557
assert len(elements) == 2
5658
assert elements[0].text == "Test1"

0 commit comments

Comments
 (0)