Commit 3dfcbd11 authored by Tres Seaver's avatar Tres Seaver

Get more info about sys.maxint when this test fails.

parent 6f508a47
......@@ -2900,9 +2900,14 @@ class Test_helpers(unittest.TestCase):
from BTrees._base import to_long
faux_self = object()
try:
self.assertRaises(ValueError, to_long, faux_self, sys.maxint + 1)
#self.assertRaises(ValueError, to_long, faux_self, sys.maxint + 1)
to_long(faux_self, sys.maxint + 1)
except ValueError:
pass
except AttributeError: #pragma NO COVER Py3k
pass
else:
assert 0, "No ValueError: sys.maxint -> %s" % sys.maxint
def test_to_long_w_invalid(self):
from BTrees._base import to_long
......
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