Fix typo in superclass method name

This commit is contained in:
Éric Araujo 2010-12-23 19:13:05 +00:00
parent 413d7b4f24
commit a63c240847

View 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)