From d7e94d960347f070f410b99f103258bffeaeb864 Mon Sep 17 00:00:00 2001 From: Michael Mintz Date: Mon, 5 Feb 2018 13:27:53 -0500 Subject: [PATCH] Update exception message for the Selenium IDE converter tool --- integrations/selenium_ide/convert_ide.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/selenium_ide/convert_ide.py b/integrations/selenium_ide/convert_ide.py index 24d25d56..5686fce0 100755 --- a/integrations/selenium_ide/convert_ide.py +++ b/integrations/selenium_ide/convert_ide.py @@ -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: