Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
make tests more scrict
Browse files Browse the repository at this point in the history
  • Loading branch information
MicaiahReid committed Apr 20, 2022
1 parent 2d32524 commit 6848f5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/chains/ethereum/ethereum/tests/api/eth/call.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -914,7 +914,7 @@ describe("api", () => {
const afterTx = await getBlockchainState();

// simulating a transaction does change the trie root, db and VM accounts
assert.notEqual(before, afterTx);
assert.notDeepStrictEqual(before, afterTx);
});

it("does not persist changes to vm or state trie when overrides are set", async () => {
Expand Down Expand Up @@ -945,7 +945,7 @@ describe("api", () => {
const afterTx = await getBlockchainState();

// simulating a transaction does change the trie root, db and VM accounts
assert.notEqual(before, afterTx);
assert.notDeepStrictEqual(before, afterTx);
});
});
});
Expand Down

0 comments on commit 6848f5b

Please sign in to comment.