diff --git a/tests/280_exception.py b/tests/280_exception.py index 2ef09218..0b12ada1 100644 --- a/tests/280_exception.py +++ b/tests/280_exception.py @@ -212,7 +212,7 @@ try: except (ZeroDivisionError, 1) as e: assert type(e) == ZeroDivisionError except Exception as e: - print(e) + assert type(e) == TypeError """ # finally, only