diff --git a/codewars_test/test_framework.py b/codewars_test/test_framework.py index e395347..50b9f85 100644 --- a/codewars_test/test_framework.py +++ b/codewars_test/test_framework.py @@ -109,6 +109,8 @@ def wrapper(func): time = timer() try: func() + except AssertionError as e: + display('FAILED', str(e)) except Exception: fail('Unexpected exception raised') tb_str = ''.join(format_exception(*exc_info()))