Skip to content

Commit d7e94d9

Browse files
committed
Update exception message for the Selenium IDE converter tool
1 parent 405c2fb commit d7e94d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integrations/selenium_ide/convert_ide.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def main():
3636
all_code = f.read()
3737
f.close()
3838
if "def test_" not in all_code:
39-
raise Exception("Not a valid Python test file!")
39+
raise Exception("Not a valid Python unittest.TestCase file!")
4040
code_lines = all_code.split('\n')
4141
for line in code_lines:
4242

0 commit comments

Comments
 (0)