Merge pull request #2047 from jonathon-love/master

Fix to typo/oversight in reflection tests
This commit is contained in:
Joshua Haberman 2016-09-06 11:14:15 -07:00 committed by GitHub
commit 74638a253e

View File

@ -636,7 +636,7 @@ class ReflectionTest(unittest.TestCase):
if struct.calcsize('L') == 4:
# Python only has signed ints, so 32-bit python can't fit an uint32
# in an int.
TestGetAndDeserialize('optional_uint32', 1 << 31, long)
TestGetAndDeserialize('optional_uint32', 1 << 31, integer_64)
else:
# 64-bit python can fit uint32 inside an int
TestGetAndDeserialize('optional_uint32', 1 << 31, int)