diff options
Diffstat (limited to 'Lib/test/test_decimal.py')
-rw-r--r-- | Lib/test/test_decimal.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_decimal.py b/Lib/test/test_decimal.py index 4a352e5..694b959 100644 --- a/Lib/test/test_decimal.py +++ b/Lib/test/test_decimal.py @@ -3837,7 +3837,7 @@ class CheckAttributes(unittest.TestCase): x = dir(C) y = [s for s in dir(P) if '__' in s or not s.startswith('_')] - self.assertEqual(set(x) - set(y), {'MallocError'}) + self.assertEqual(set(x) - set(y), set()) def test_context_attributes(self): |