Skip to content

Commit 7a34c3b

Browse files
committed
Update exception comment
1 parent b7bc809 commit 7a34c3b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

seleniumbase/fixtures/base_case.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,8 @@ def wait_for_link_text_present(self, link_text,
229229
for x in range(int(timeout * 5)):
230230
try:
231231
if not self.is_link_text_present(link_text):
232-
raise Exception("Link text {%s} not found!" % link_text)
232+
raise Exception(
233+
"Link text {%s} was not found!" % link_text)
233234
return
234235
except Exception:
235236
now_ms = time.time() * 1000.0

0 commit comments

Comments
 (0)