Skip to content

Commit e93e3cf

Browse files
author
Sam McHardy
committed
Fix tests
1 parent 32a2cf8 commit e93e3cf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_api_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def test_api_exception():
2525
with pytest.raises(BinanceAPIException):
2626
with requests_mock.mock() as m:
2727
json_obj = {"code": 1002, "msg": "Invalid API call"}
28-
m.get('https://www.binance.com/api/v1/time', json=json_obj, status_code=400)
28+
m.get('https://api.binance.com/api/v1/time', json=json_obj, status_code=400)
2929
client.get_server_time()
3030

3131

0 commit comments

Comments
 (0)