diff --git a/introduction_course/lesson3/task2/tests.py b/introduction_course/lesson3/task2/tests.py index 9208a1d..192f0df 100644 --- a/introduction_course/lesson3/task2/tests.py +++ b/introduction_course/lesson3/task2/tests.py @@ -5,7 +5,8 @@ def test_value(): file = import_task_file() if hasattr(file, "ten_of_hellos") and file.ten_of_hellos == "hellohellohellohellohellohellohellohellohellohello": passed() - failed("Use multiplication") + else: + failed("Use multiplication") def test_window(): window = get_answer_placeholders()[0] @@ -18,4 +19,4 @@ def test_window(): run_common_tests("You should modify the file") test_value() - test_window() \ No newline at end of file + test_window()