diff --git a/introduction_course_v2/lesson3/task2/tests.py b/introduction_course_v2/lesson3/task2/tests.py index e71e4ae..e6ec680 100644 --- a/introduction_course_v2/lesson3/task2/tests.py +++ b/introduction_course_v2/lesson3/task2/tests.py @@ -5,7 +5,8 @@ def test_value(): file = import_task_file() if file.tenofhellos == "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()