core: fix unit tests

test_protobuf.py is failing because of `del ffields` introduced by 5b6fa1136a
pull/388/head
Tomas Susanka 5 years ago
parent 0ac0daf148
commit e897f7cf7f

@ -281,7 +281,7 @@ async def dump_message(
if isinstance(ftype, type) and issubclass(ftype, MessageType):
ffields = ftype.get_fields()
else:
del ffields
ffields = None
for svalue in fvalue:
await dump_uvarint(writer, fkey)

Loading…
Cancel
Save