Skip to content

Commit

Permalink
test: fix names
Browse files Browse the repository at this point in the history
  • Loading branch information
pcheremu committed Mar 7, 2024
1 parent 7e43c46 commit a433dc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/integration-tests/tests/api/transactions.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { localConfig } from "../../src/config";
import { Buffer, Token, TransactionsStatus, TransactionsType, Wallets } from "../../src/entities";
import { Buffer, Token, TransactionStatus, TransactionsType, Wallets } from "../../src/entities";
import { Helper } from "../../src/helper";
import { Playbook } from "../../src/playbook/playbook";

Expand Down Expand Up @@ -853,7 +853,7 @@ describe("Transactions", () => {
expect(response.body.from).toStrictEqual(Wallets.richWalletAddress);
expect(response.body.to).toStrictEqual(token);
expect(response.body.hash).toStrictEqual(txHash);
expect(response.body.status).toStrictEqual(TransactionsStatus.failed);
expect(response.body.status).toStrictEqual(TransactionStatus.failed);
expect(response.body).toStrictEqual(expect.objectContaining({ value: "0" }));
expect(response.body).toStrictEqual(expect.objectContaining({ isL1Originated: false }));
expect(response.body).toStrictEqual(expect.objectContaining({ transactionIndex: 0 }));
Expand Down

0 comments on commit a433dc9

Please sign in to comment.