Skip to content

Commit

Permalink
✅ Unit Test
Browse files Browse the repository at this point in the history
  • Loading branch information
mraniki committed Oct 10, 2023
1 parent 7e4a893 commit d8ebbb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_unit.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,5 +246,5 @@ async def test_identify_order2(fmo, order_2):
"""Identify Testing"""
result = await fmo.identify_order(order_2)
assert result is not None

Check notice

Code scanning / Bandit

Use of assert detected. The enclosed code will be removed when compiling to optimised byte code. Note test

Use of assert detected. The enclosed code will be removed when compiling to optimised byte code.
result = await fmo.get_order(order_2)
assert result["action"] == "LONG"
# result = await fmo.get_order(order_2)
# assert result["action"] == "LONG"

0 comments on commit d8ebbb3

Please sign in to comment.