From 98a15ca2b326811ff87f52c5ff24ea7302395214 Mon Sep 17 00:00:00 2001 From: Alberto Sala Date: Wed, 3 Jul 2024 18:56:27 +0200 Subject: [PATCH] Modifications after code review --- qa/sc_evm_backward_transfer.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/qa/sc_evm_backward_transfer.py b/qa/sc_evm_backward_transfer.py index 54a55d86ee..ddb8bc7091 100755 --- a/qa/sc_evm_backward_transfer.py +++ b/qa/sc_evm_backward_transfer.py @@ -541,10 +541,9 @@ def run_test(self): try: withdrawcoins(sc_node, mc_address2, sc_bt_amount_in_zennies_2) - fail("Interoperability call should fail before fork point") + fail("call should fail after fork 1.5 activation") except Exception as err: print("Expected exception thrown: {}".format(err)) - # error is raised from API since the address has no balance assert_true("Fork 1.5 is active" in str(err)) # 'Something went wrong, see {\'error\': {\'code\': \'0204\', \'description\': \'Fork 1.5 is active, can not invoke this command\', \'detail\': \'\'}}'