Skip to content

Commit c21e090

Browse files
committed
corrected formatting with format.sh
1 parent 38f35ea commit c21e090

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

py/selenium/webdriver/support/select.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,4 +255,3 @@ def _has_css_property_and_visible(self, option) -> bool:
255255
if css_value in css_value_candidates:
256256
return False
257257
return True
258-

py/test/selenium/webdriver/common/select_class_tests.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,13 +161,15 @@ def test_raises_exception_select_by_text_multiple_disabled(driver, pages):
161161
with pytest.raises(NotImplementedError):
162162
sel.select_by_visible_text(disabledMultiSelect["values"][1])
163163

164+
164165
def test_raises_exception_select_by_text_multiple_hidden(driver, pages):
165166
pages.load("formPage.html")
166167

167168
sel = Select(driver.find_element(By.ID, invisibleMultiSelect["id"]))
168169
with pytest.raises(NoSuchElementException):
169170
sel.select_by_visible_text(invisibleMultiSelect["values"][0])
170171

172+
171173
def test_deselect_all_single(driver, pages):
172174
pages.load("formPage.html")
173175
for select in [singleSelectValues1, singleSelectValues2]:

0 commit comments

Comments
 (0)