From: Éric Araujo Date: Thu, 23 Dec 2010 19:13:05 +0000 (+0000) Subject: Fix typo in superclass method name X-Git-Tag: v3.2rc1~368 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a63c240847780648602bfffc47eb0cf1b3d86799;p=thirdparty%2FPython%2Fcpython.git Fix typo in superclass method name --- diff --git a/Lib/test/test_tuple.py b/Lib/test/test_tuple.py index 7d89e6321758..75fbe45ec4b7 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)