client: expected field check fix

This commit is contained in:
Tomas Susanka 2018-01-04 16:34:33 +01:00 committed by Pavol Rusnak
parent c71f234a8b
commit 4e01971e4c
1 changed files with 1 additions and 1 deletions

View File

@ -406,7 +406,7 @@ class DebugLinkMixin(object):
for field, value in expected.__dict__.items():
print("EXPECTED", getattr(expected, field), getattr(msg, field), field, value)
if getattr(expected, field) != value:
if getattr(expected, field) is not None and getattr(msg, field) != value:
raise CallException(proto.FailureType.UnexpectedMessage,
"Expected %s, got %s" % (pprint(expected), pprint(msg)))