Skip to content

Commit 30be80b

Browse files
[py] Correct flake8 in python tests
1 parent db6d118 commit 30be80b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/test/selenium/webdriver/support/expected_conditions_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,6 @@ def test_clickable_element_true(driver, pages):
9090
def test_clickable_element_false(driver, pages):
9191
pages.load("simpleTest.html")
9292
with pytest.raises(TimeoutException):
93-
target = (By.ID, "hiddenline") # text, should not be clickable
93+
target = (By.ID, "hiddenline") # text, should not be clickable
9494
element = driver.find_element(*target) # grab element at locator
9595
WebDriverWait(driver, 0.1).until(EC.element_to_be_clickable(element))

0 commit comments

Comments
 (0)