diff --git a/Lib/test/test_pep352.py b/Lib/test/test_pep352.py index e33552809f4..313c60780ed 100644 --- a/Lib/test/test_pep352.py +++ b/Lib/test/test_pep352.py @@ -143,13 +143,6 @@ class ExceptionClassTests(unittest.TestCase): else: self.fail("BaseException.message not deprecated") - exc = BaseException() - try: - exc.message = '' - except DeprecationWarning: - pass - else: - self.fail("BaseException.message assignment not deprecated") class UsageTests(unittest.TestCase):