diff --git a/tests/integration/transactions/test_xchain_add_account_create_attestation.py b/tests/integration/transactions/test_xchain_add_account_create_attestation.py index 6dd9b41a2..3c66ba3b8 100644 --- a/tests/integration/transactions/test_xchain_add_account_create_attestation.py +++ b/tests/integration/transactions/test_xchain_add_account_create_attestation.py @@ -1,6 +1,5 @@ from tests.integration.integration_test_case import IntegrationTestCase from tests.integration.it_utils import ( - LEDGER_ACCEPT_REQUEST, sign_and_reliable_submission_async, test_async_and_sync, ) @@ -63,6 +62,5 @@ async def test_basic_functionality(self, client): ) self.assertTrue(response.is_successful()) self.assertEqual(response.result["engine_result"], "tesSUCCESS") - await client.request(LEDGER_ACCEPT_REQUEST) self.assertTrue(await does_account_exist(destination, client)) diff --git a/tests/integration/transactions/test_xchain_add_claim_attestation.py b/tests/integration/transactions/test_xchain_add_claim_attestation.py index 2680fdd95..b2d8384e3 100644 --- a/tests/integration/transactions/test_xchain_add_claim_attestation.py +++ b/tests/integration/transactions/test_xchain_add_claim_attestation.py @@ -1,6 +1,5 @@ from tests.integration.integration_test_case import IntegrationTestCase from tests.integration.it_utils import ( - LEDGER_ACCEPT_REQUEST, sign_and_reliable_submission_async, test_async_and_sync, ) @@ -16,6 +15,7 @@ class TestXChainAddClaimAttestation(IntegrationTestCase): @test_async_and_sync(globals()) async def test_basic_functionality(self, client): other_chain_source = Wallet.create().classic_address + claim_id_response = await sign_and_reliable_submission_async( XChainCreateClaimID( account=DESTINATION.classic_address, @@ -26,7 +26,6 @@ async def test_basic_functionality(self, client): DESTINATION, client, ) - await client.request(LEDGER_ACCEPT_REQUEST) claim_id_hash = ( claim_id_response.result.get("tx_json") or claim_id_response.result )["hash"] @@ -80,7 +79,6 @@ async def test_basic_functionality(self, client): ) self.assertTrue(response.is_successful()) self.assertEqual(response.result["engine_result"], "tesSUCCESS") - await client.request(LEDGER_ACCEPT_REQUEST) account_info2 = await client.request( AccountInfo(account=DESTINATION.classic_address) diff --git a/tests/integration/transactions/test_xchain_claim.py b/tests/integration/transactions/test_xchain_claim.py index f5ea68c2c..cc7400785 100644 --- a/tests/integration/transactions/test_xchain_claim.py +++ b/tests/integration/transactions/test_xchain_claim.py @@ -1,6 +1,5 @@ from tests.integration.integration_test_case import IntegrationTestCase from tests.integration.it_utils import ( - LEDGER_ACCEPT_REQUEST, sign_and_reliable_submission_async, test_async_and_sync, ) @@ -32,7 +31,6 @@ async def test_basic_functionality(self, client): DESTINATION, client, ) - await client.request(LEDGER_ACCEPT_REQUEST) claim_id_hash = ( claim_id_response.result.get("tx_json") or claim_id_response.result )["hash"] @@ -85,7 +83,6 @@ async def test_basic_functionality(self, client): ) self.assertTrue(response.is_successful()) self.assertEqual(response.result["engine_result"], "tesSUCCESS") - await client.request(LEDGER_ACCEPT_REQUEST) account_info2 = await client.request( AccountInfo(account=DESTINATION.classic_address) @@ -106,7 +103,6 @@ async def test_basic_functionality(self, client): ) self.assertTrue(response.is_successful()) self.assertEqual(response.result["engine_result"], "tesSUCCESS") - await client.request(LEDGER_ACCEPT_REQUEST) account_info3 = await client.request( AccountInfo(account=DESTINATION.classic_address)