summaryrefslogtreecommitdiff
path: root/Lib/test/test_descr.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-08-17 11:48:23 -0500
committerBenjamin Peterson <benjamin@python.org>2011-08-17 11:48:23 -0500
commit4647d766b80ecde02825735226247d0d4b4956e4 (patch)
tree756d919589d15245ec6dd39fd5e91376752a560b /Lib/test/test_descr.py
parent404d8e895c5dc0ca5de2e3b9e302d8fa5d8914e4 (diff)
downloadcpython-4647d766b80ecde02825735226247d0d4b4956e4.tar.gz
improve test name
Diffstat (limited to 'Lib/test/test_descr.py')
-rw-r--r--Lib/test/test_descr.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py
index 3f68ee9bd1..aade9f5a45 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"]