We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09b0819 commit 4fab860Copy full SHA for 4fab860
1 file changed
Lib/test/test_concurrent_futures/executor.py
@@ -69,7 +69,7 @@ def test_map_exception(self):
69
70
self.assertFalse(
71
gc.get_referrers(error),
72
- msg="the raised error should not have any referrers",
+ msg="the exception should not have any referrers",
73
)
74
75
tb = error.__traceback__
@@ -81,7 +81,7 @@ def test_map_exception(self):
81
if isinstance(val, Exception)
82
and var in val.__traceback__.tb_frame.f_locals
83
},
84
- msg=f"the raised exception's traceback should not contain an exception that captures itself in its own traceback",
+ msg=f"the exception's traceback should not contain an exception that captures itself in its own traceback",
85
86
87
@support.requires_resource('walltime')
0 commit comments