Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sammchardy committed Nov 19, 2017
1 parent 32a2cf8 commit e93e3cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_api_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def test_api_exception():
with pytest.raises(BinanceAPIException):
with requests_mock.mock() as m:
json_obj = {"code": 1002, "msg": "Invalid API call"}
m.get('https://www.binance.com/api/v1/time', json=json_obj, status_code=400)
m.get('https://api.binance.com/api/v1/time', json=json_obj, status_code=400)
client.get_server_time()


Expand Down

0 comments on commit e93e3cf

Please sign in to comment.