mirror of
https://github.com/python/cpython.git
synced 2025-10-10 00:43:41 +00:00
Fix typo in superclass method name
This commit is contained in:
parent
413d7b4f24
commit
a63c240847
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ class TupleTest(seq_tests.CommonTest):
|
||||||
type2test = tuple
|
type2test = tuple
|
||||||
|
|
||||||
def test_constructors(self):
|
def test_constructors(self):
|
||||||
super().test_len()
|
super().test_constructors()
|
||||||
# calling built-in types without argument must return empty
|
# calling built-in types without argument must return empty
|
||||||
self.assertEqual(tuple(), ())
|
self.assertEqual(tuple(), ())
|
||||||
t0_3 = (0, 1, 2, 3)
|
t0_3 = (0, 1, 2, 3)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue