diff --git a/tests/_exception.py b/tests/_exception.py index 84423b10..4e77ac35 100644 --- a/tests/_exception.py +++ b/tests/_exception.py @@ -41,4 +41,11 @@ def f1(): try: f1() except KeyError: - print("PASS 04") \ No newline at end of file + print("PASS 04") + + +assert True, "Msg" +try: + assert False, "Msg" +except AssertionError: + print("PASS 05")