From 26fec098e488581bb20bc0683dc74d45271b9bb9 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Sun, 21 Apr 2019 12:27:52 -0400 Subject: [PATCH] fix stream unit tests --- tests/unit/stream/test_stream_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/stream/test_stream_manager.py b/tests/unit/stream/test_stream_manager.py index 6224f47bd..b2a57c652 100644 --- a/tests/unit/stream/test_stream_manager.py +++ b/tests/unit/stream/test_stream_manager.py @@ -67,7 +67,7 @@ def get_mock_wallet(sd_hash, storage, balance=10.0, fee=None): claim_obj.stream.source.sd_hash = sd_hash claim_obj.stream.source.media_type = "image/png" claim['value'] = claim_obj - claim['hex'] = binascii.hexlify(claim_obj.to_bytes()).decode() + claim['protobuf'] = binascii.hexlify(claim_obj.to_bytes()).decode() async def mock_resolve(*args): await storage.save_claims([claim])