Skip to content

Commit

Permalink
chore(test)_: fix functional test assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
siddarthkay authored and igor-sirotin committed Oct 23, 2024
1 parent 1cbedd0 commit 04c74b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests-functional/tests/test_router.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,5 +111,5 @@ def test_tx_from_route(self):
tx_details = response.json()["result"]

assert tx_details["value"] == amount_in
assert tx_details["to"] == user_2.address
assert tx_details["from"] == user_1.address
assert tx_details["to"].upper() == user_2.address.upper()
assert tx_details["from"].upper() == user_1.address.upper()

0 comments on commit 04c74b0

Please sign in to comment.