]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in superclass method name
authorÉric Araujo <merwok@netwok.org>
Thu, 23 Dec 2010 19:13:05 +0000 (19:13 +0000)
committerÉric Araujo <merwok@netwok.org>
Thu, 23 Dec 2010 19:13:05 +0000 (19:13 +0000)
Lib/test/test_tuple.py

index 7d89e632175862e38bb81fe05826ae07da96613d..75fbe45ec4b755e0982a383b6115aa94c9ed8cea 100644 (file)
@@ -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)