From dcb16f003c454e9e0eeb7cc8260cf4c33e914dab Mon Sep 17 00:00:00 2001 From: Tim Maxwell Date: Fri, 6 Oct 2023 12:28:53 -0700 Subject: [PATCH] Fix remaining error manually --- tests/test_pickle_exception.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_pickle_exception.py b/tests/test_pickle_exception.py index 12952fb..d28fb14 100644 --- a/tests/test_pickle_exception.py +++ b/tests/test_pickle_exception.py @@ -44,7 +44,6 @@ def test_install(clear_dispatch_table, how, protocol): # The ValueError's __context__ will be the ZeroDivisionError raise ValueError('blah') except Exception as e: - assert isinstance(e.__context__, ZeroDivisionError) # Python 3 only syntax # raise CustomError("foo") from e new_e = CustomError('foo')