commit | a63c240847780648602bfffc47eb0cf1b3d86799 | [log] [tgz] |
---|---|---|
author | Éric Araujo <merwok@netwok.org> | Thu Dec 23 19:13:05 2010 +0000 |
committer | Éric Araujo <merwok@netwok.org> | Thu Dec 23 19:13:05 2010 +0000 |
tree | dca48636d76ab54849a4e2e1f1bb6e7d891abd69 | |
parent | 413d7b4f24004fe2358f9bf941ff0ed8757726a3 [diff] [blame] |
Fix typo in superclass method name
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 @@ 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)