Skip to content

Commit

Permalink
always pass use_bin_type=True to msgpack.dump(s)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanCech committed Jan 7, 2018
1 parent b2e37f5 commit 2cd94ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/tests/test_finders_remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def test_find_nodes(self, http_request):
},
]
responseObject = HTTPResponse(
body=BytesIO(msgpack.dumps(data)),
body=BytesIO(msgpack.dumps(data, use_bin_type=True)),
status=200,
preload_content=False,
headers={'Content-Type': 'application/x-msgpack'}
Expand Down

0 comments on commit 2cd94ba

Please sign in to comment.