Skip to content

Commit

Permalink
test: fixed test name by specifying error reason
Browse files Browse the repository at this point in the history
  • Loading branch information
amelnytskyi committed Apr 17, 2024
1 parent f55026d commit bd2588b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/integration-tests/tests/api/stats.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion packages/integration-tests/tests/api/transactions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit bd2588b

Please sign in to comment.