Skip to content
This repository has been archived by the owner on Sep 9, 2020. It is now read-only.

Commit

Permalink
Fix test in Python 2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
romankolpak committed Aug 29, 2017
1 parent f55f51a commit f7d375a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_api_response_handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def test_unpack_data(self):
assert type(result) is tuple
data, exec_time, elapsed = result
assert type(data) is dict
assert data.keys() == {
assert set(data.keys()) == {
'status', 'model_id', 'code', 'execution_time', 'predictions'}
assert elapsed == 0.123
assert exec_time == 10
Expand Down

0 comments on commit f7d375a

Please sign in to comment.