Skip to content

Commit 5aee18a

Browse files
committed
remove blank lines
1 parent b46afff commit 5aee18a

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

tests/test_ids.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ def test_spot_id():
2121
assert url_dict['quantity'] == '0.1'
2222
assert url_dict['newClientOrderId'].startswith('x-R4BD3S82')
2323

24-
2524
def test_spot_limit_id():
2625
with requests_mock.mock() as m:
2726
m.post("https://api.binance.com/api/v3/order", json={}, status_code=200)
@@ -48,7 +47,6 @@ def test_swap_id():
4847
assert url_dict['quantity'] == '0.1'
4948
assert url_dict['newClientOrderId'.lower()].startswith('x-xcKtGhcu'.lower())
5049

51-
5250
@pytest.mark.asyncio()
5351
async def test_spot_id_async():
5452
clientAsync = AsyncClient(api_key="api_key", api_secret="api_secret") # reuse client later
@@ -60,7 +58,6 @@ def handler(url, **kwargs):
6058
await clientAsync.create_order(symbol="LTCUSDT", side="BUY", type="MARKET", quantity=0.1)
6159
await clientAsync.close_connection()
6260

63-
6461
@pytest.mark.asyncio()
6562
async def test_swap_id_async():
6663
clientAsync = AsyncClient(api_key="api_key", api_secret="api_secret")

0 commit comments

Comments
 (0)