summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_tuple.py
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2010-12-23 19:13:05 (GMT)
committerÉric Araujo <merwok@netwok.org>2010-12-23 19:13:05 (GMT)
commita63c240847780648602bfffc47eb0cf1b3d86799 (patch)
treedca48636d76ab54849a4e2e1f1bb6e7d891abd69 /Lib/test/test_tuple.py
parent413d7b4f24004fe2358f9bf941ff0ed8757726a3 (diff)
downloadcpython-a63c240847780648602bfffc47eb0cf1b3d86799.zip
cpython-a63c240847780648602bfffc47eb0cf1b3d86799.tar.gz
cpython-a63c240847780648602bfffc47eb0cf1b3d86799.tar.bz2
Fix typo in superclass method name
Diffstat (limited to 'Lib/test/test_tuple.py')
-rw-r--r--Lib/test/test_tuple.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_tuple.py b/Lib/test/test_tuple.py
index 7d89e63..75fbe45 100644
--- a/Lib/test/test_tuple.py
+++ b/Lib/test/test_tuple.py
@@ -6,7 +6,7 @@ class TupleTest(seq_tests.CommonTest):
type2test = tuple
def test_constructors(self):
- super().test_len()
+ super().test_constructors()
# calling built-in types without argument must return empty
self.assertEqual(tuple(), ())
t0_3 = (0, 1, 2, 3)