Update exception message for the Selenium IDE converter tool

This commit is contained in:
Michael Mintz 2018-02-05 13:27:53 -05:00
parent 405c2fbb0b
commit d7e94d9603
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ def main():
all_code = f.read()
f.close()
if "def test_" not in all_code:
raise Exception("Not a valid Python test file!")
raise Exception("Not a valid Python unittest.TestCase file!")
code_lines = all_code.split('\n')
for line in code_lines: