Fixes test_getargs2 to get the buildbots working again.

This commit is contained in:
Steve Dower 2016-09-11 19:43:51 -07:00
parent 16c18a354b
commit a3222b8424
1 changed files with 1 additions and 1 deletions

View File

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