Kaydet (Commit) 35800acf authored tarafından Nick Pope's avatar Nick Pope Kaydeden (comit) Tim Graham

Refs #25225 -- Removed test for removed ListMixin._IndexError.

Unused since 197b1878.
üst 2fc5a5bf
......@@ -419,13 +419,6 @@ class ListMixinTest(unittest.TestCase):
self.assertLess(ul, pl + [2], 'cmp')
self.assertLessEqual(ul, pl + [2], 'cmp')
# Also works with a custom IndexError
ul_longer = ul + [2]
ul_longer._IndexError = TypeError
ul._IndexError = TypeError
self.assertNotEqual(ul_longer, pl)
self.assertGreater(ul_longer, ul)
pl[1] = 20
self.assertGreater(pl, ul, 'cmp for gt self')
self.assertLess(ul, pl, 'cmp for self lt')
......
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