mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-25 13:58:39 +00:00
Fixed Python unit test breakage.
Test was testing for a field to be None, even though it is populated in one particular instance. Change-Id: Id19848d01498d4c0a684efdb2bf49ff12c5b6758 Tested: on Linux.
This commit is contained in:
@@ -152,8 +152,6 @@ def CheckReadBuffer(buf, offset):
|
|||||||
asserter(monster.Testarrayofstring(0) == b"test1")
|
asserter(monster.Testarrayofstring(0) == b"test1")
|
||||||
asserter(monster.Testarrayofstring(1) == b"test2")
|
asserter(monster.Testarrayofstring(1) == b"test2")
|
||||||
|
|
||||||
asserter(monster.Enemy() is None)
|
|
||||||
|
|
||||||
asserter(monster.TestarrayoftablesLength() == 0)
|
asserter(monster.TestarrayoftablesLength() == 0)
|
||||||
asserter(monster.TestnestedflatbufferLength() == 0)
|
asserter(monster.TestnestedflatbufferLength() == 0)
|
||||||
asserter(monster.Testempty() is None)
|
asserter(monster.Testempty() is None)
|
||||||
@@ -1274,7 +1272,7 @@ def BenchmarkMakeMonsterFromGeneratedCode(count, length):
|
|||||||
|
|
||||||
def backward_compatible_run_tests(**kwargs):
|
def backward_compatible_run_tests(**kwargs):
|
||||||
if PY_VERSION < (2, 6):
|
if PY_VERSION < (2, 6):
|
||||||
sys.stderr.write("Python version less than 2.6 are not supported")
|
sys.stderr.write("Python version less than 2.6 are not supported")
|
||||||
sys.stderr.flush()
|
sys.stderr.flush()
|
||||||
return False
|
return False
|
||||||
|
|
||||||
@@ -1287,7 +1285,7 @@ def backward_compatible_run_tests(**kwargs):
|
|||||||
return False
|
return False
|
||||||
return True
|
return True
|
||||||
|
|
||||||
# python2.7 and above let us not exit once unittest.main is run:
|
# python2.7 and above let us not exit once unittest.main is run:
|
||||||
kwargs['exit'] = False
|
kwargs['exit'] = False
|
||||||
kwargs['verbosity'] = 0
|
kwargs['verbosity'] = 0
|
||||||
ret = unittest.main(**kwargs)
|
ret = unittest.main(**kwargs)
|
||||||
|
|||||||
Reference in New Issue
Block a user