Skip to content

Commit

Permalink
♻️
Browse files Browse the repository at this point in the history
  • Loading branch information
mraniki committed Jul 15, 2024
1 parent 348c5ea commit fc61ed1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/test_unit.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,14 @@ async def test_submit_order_exception(CXTrader):
CXTrader.clients = []
await CXTrader.submit_order()

@pytest.mark.asyncio
async def test_modify_position(CXTrader, order):
result = await CXTrader.modify_position(order)
print(result)
assert result is not None

# assert ("binance" in result) or ("huobi" in result) or ("capital" in result)
# assert ("🔵" in result) or ("Error" in result)

# @pytest.mark.asyncio
# async def test_submit_limit_order(CXTrader, limit_order):
Expand Down

0 comments on commit fc61ed1

Please sign in to comment.