mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
#17142: fix apparent copy and paste error in test_all.
This commit is contained in:
parent
b5b9c8cd40
commit
1acaf0bce2
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ class BuiltinTest(unittest.TestCase):
|
|||
self.assertEqual(any([None, None, None]), False)
|
||||
self.assertEqual(any([None, 4, None]), True)
|
||||
self.assertRaises(RuntimeError, any, [None, TestFailingBool(), 6])
|
||||
self.assertRaises(RuntimeError, all, TestFailingIter())
|
||||
self.assertRaises(RuntimeError, any, TestFailingIter())
|
||||
self.assertRaises(TypeError, any, 10) # Non-iterable
|
||||
self.assertRaises(TypeError, any) # No args
|
||||
self.assertRaises(TypeError, any, [2, 4, 6], []) # Too many args
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue