summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2016-09-11 19:43:51 -0700
committerSteve Dower <steve.dower@microsoft.com>2016-09-11 19:43:51 -0700
commita3222b8424e932783e417411e428779d08d2b8a9 (patch)
tree087200a4ce2ab27298317462a5f4eca9c7e71d6c
parent16c18a354b8ae3e6a2a68de5cdb2679c5c8011e5 (diff)
downloadcpython-git-a3222b8424e932783e417411e428779d08d2b8a9.tar.gz
Fixes test_getargs2 to get the buildbots working again.
-rw-r--r--Lib/test/test_getargs2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_getargs2.py b/Lib/test/test_getargs2.py
index 8a194aa03d..5750bfa5f8 100644
--- a/Lib/test/test_getargs2.py
+++ b/Lib/test/test_getargs2.py
@@ -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))