Commit 0c534a46 authored by Terry Jan Reedy's avatar Terry Jan Reedy

Silence deprecation warning in test_unittest for 'None > 1'.

This is the same change that was made in 3.x when this became an error.
parent 4c42735a
......@@ -159,7 +159,7 @@ class Test_TextTestRunner(unittest.TestCase):
# This used to raise an exception due to TextTestResult not passing
# on arguments in its __init__ super call
ATextResult(None, None, None)
ATextResult(None, None, 1)
def testBufferAndFailfast(self):
......
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