Skip to content

Commit

Permalink
fix_: functional tests (#5979)
Browse files Browse the repository at this point in the history
* fix_: generate on test-functional

* chore(test)_: fix functional test assertion

---------

Co-authored-by: Siddarth Kumar <[email protected]>
  • Loading branch information
2 people authored and ilmotta committed Oct 23, 2024
1 parent 3179532 commit b93e343
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -398,6 +398,7 @@ test-e2e: ##@tests Run e2e tests
test-e2e-race: export GOTEST_EXTRAFLAGS=-race
test-e2e-race: test-e2e ##@tests Run e2e tests with -race flag

test-functional: generate
test-functional: export FUNCTIONAL_TESTS_DOCKER_UID ?= $(call sh, id -u)
test-functional: export FUNCTIONAL_TESTS_REPORT_CODECOV ?= false
test-functional:
Expand Down
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 b93e343

Please sign in to comment.