Commit d04cf5fd authored by Steve Dower's avatar Steve Dower

Fixes test_getargs2 to get the buildbots working again.

parent 64eac1d2
......@@ -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))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment