Skip to content

Commit

Permalink
multisig: Fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
CostinCarabas committed Dec 12, 2024
1 parent 247fb5b commit 38538b9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -386,8 +386,8 @@
"gasLimit": "5,000,000"
},
"expect": {
"status": "4",
"message": "str:Invalid token or amount"
"out": [],
"status": "0"
}
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -414,8 +414,8 @@
"gasLimit": "5,000,000"
},
"expect": {
"status": "4",
"message": "str:Invalid token or amount"
"out": [],
"status": "0"
}
}
]
Expand Down
2 changes: 0 additions & 2 deletions multisig/tests/multisig_blackbox_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,6 @@ fn ethereum_to_multiversx_relayer_call_data_several_tx_test() {
.to(MULTISIG_ADDRESS)
.typed(multisig_proxy::MultisigProxy)
.perform_action_endpoint(1usize)
.returns(ExpectError(4, "Invalid token or amount"))
.run();

state.world.write_scenario_trace(
Expand Down Expand Up @@ -866,7 +865,6 @@ fn ethereum_to_multiversx_relayer_query2_test() {
.to(MULTISIG_ADDRESS)
.typed(multisig_proxy::MultisigProxy)
.perform_action_endpoint(1usize)
.returns(ExpectError(4, "Invalid token or amount"))
.run();

state
Expand Down

0 comments on commit 38538b9

Please sign in to comment.