summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_descr.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-08-17 16:48:23 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-08-17 16:48:23 (GMT)
commitaf3dcd2f9871a953d58408b114b8d1579618c6e8 (patch)
treeb8c14e0a0ed15789253d8d298900afddfd0453d2 /Lib/test/test_descr.py
parentd17cefc7876ec646a33773dfd2aa4dde2d8187d0 (diff)
downloadcpython-af3dcd2f9871a953d58408b114b8d1579618c6e8.zip
cpython-af3dcd2f9871a953d58408b114b8d1579618c6e8.tar.gz
cpython-af3dcd2f9871a953d58408b114b8d1579618c6e8.tar.bz2
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 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"]