mirror of https://github.com/python/cpython
Fixes test_getargs2 to get the buildbots working again.
This commit is contained in:
parent
16c18a354b
commit
a3222b8424
|
@ -471,7 +471,7 @@ class Tuple_TestCase(unittest.TestCase):
|
|||
|
||||
ret = get_args(*TupleSubclass([1, 2]))
|
||||
self.assertEqual(ret, (1, 2))
|
||||
self.assertIs(type(ret), tuple)
|
||||
self.assertIsInstance(ret, tuple)
|
||||
|
||||
ret = get_args()
|
||||
self.assertIn(ret, ((), None))
|
||||
|
|
Loading…
Reference in New Issue