From 5ca757e96c87fd9848b8cfc4c26977a72a6021de Mon Sep 17 00:00:00 2001 From: Oleh Bairak Date: Mon, 5 Feb 2024 16:40:47 +0100 Subject: [PATCH] fix: new one --- packages/integration-tests/tests/api/accounts.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/integration-tests/tests/api/accounts.test.ts b/packages/integration-tests/tests/api/accounts.test.ts index a6c84541eb..bea4015ca2 100644 --- a/packages/integration-tests/tests/api/accounts.test.ts +++ b/packages/integration-tests/tests/api/accounts.test.ts @@ -168,7 +168,7 @@ describe("API module: Account", () => { await helper.retryTestAction(async () => { const blocks = await request(environment.blockExplorerAPI).get("/blocks"); const blockNumber = blocks.body.items[0].number; - apiRoute = `/api?module=account&action=tokentx&page=1&offset=10&sort=desc&endblock${blockNumber}&startblock=0&contractaddress=${Token.ETHER_ERC20_Address}&address=${Wallets.richWalletAddress}`; + apiRoute = `/api?module=account&action=tokentx&page=1&offset=10&sort=desc&endblock${blockNumber}&startblock=0&contractaddress=${Token.ETHER_ERC20_Address}&address=${Token.ETHER_ERC20_Address}`; response = await helper.performGETrequest(apiRoute); expect(response.status).toBe(200);