From bd2588b16f8ab60747d32e94efe40b3c96729fc2 Mon Sep 17 00:00:00 2001 From: amelnytskyi Date: Wed, 17 Apr 2024 17:55:57 +0300 Subject: [PATCH] test: fixed test name by specifying error reason --- packages/integration-tests/tests/api/stats.test.ts | 2 +- packages/integration-tests/tests/api/transactions.test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/integration-tests/tests/api/stats.test.ts b/packages/integration-tests/tests/api/stats.test.ts index 210c23e254..007475e4c8 100644 --- a/packages/integration-tests/tests/api/stats.test.ts +++ b/packages/integration-tests/tests/api/stats.test.ts @@ -24,7 +24,7 @@ describe("Stats", () => { }); //@id1955 - it("Verify the response via /action=ethprice endpoint", async () => { + it("Verify the response via /action=ethprice endpoint - incorrect token name", async () => { await helper.runRetriableTestAction(async () => { apiRoute = `/api?module=stats&action=ethprisce2`; response = await helper.performBlockExplorerApiGetRequest(apiRoute); diff --git a/packages/integration-tests/tests/api/transactions.test.ts b/packages/integration-tests/tests/api/transactions.test.ts index a35698ae53..c0c65b3df7 100644 --- a/packages/integration-tests/tests/api/transactions.test.ts +++ b/packages/integration-tests/tests/api/transactions.test.ts @@ -1634,7 +1634,7 @@ describe("Transactions", () => { }); //@id1958 - it("Verify /api?module=transaction&action=getstatus response - negative case", async () => { + it("Verify /api?module=transaction&action=getstatus response - incorrect transaction hash format", async () => { await helper.runRetriableTestAction(async () => { apiRoute = `/api?module=transaction&action=getstatus&txhash=0x04a4757cd59681b037c1e7bdd2402cc45a23c66ed7497614879376719d34e020a`; response = await helper.performBlockExplorerApiGetRequest(apiRoute);