projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
16c18a3
)
Fixes test_getargs2 to get the buildbots working again.
author
Steve Dower
<steve.dower@microsoft.com>
Mon, 12 Sep 2016 02:43:51 +0000
(19:43 -0700)
committer
Steve Dower
<steve.dower@microsoft.com>
Mon, 12 Sep 2016 02:43:51 +0000
(19:43 -0700)
Lib/test/test_getargs2.py
patch
|
blob
|
history
diff --git
a/Lib/test/test_getargs2.py
b/Lib/test/test_getargs2.py
index 8a194aa03d42784685d674e2e8b3153bcdb8ac0a..5750bfa5f88d4a75ff38c241f273b88621cb8edd 100644
(file)
--- 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.assertIs
Instance(ret
, tuple)
ret = get_args()
self.assertIn(ret, ((), None))