diff options
-rw-r--r-- | Lib/test/test_descr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index 3f68ee9..aade9f5 100644 --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -4253,7 +4253,7 @@ order (MRO) for bases """ foo = Foo() str(foo) - def test_slot_shadows_class(self): + def test_slot_shadows_class_variable(self): with self.assertRaises(ValueError) as cm: class X: __slots__ = ["foo"] |