Skip to content

Commit dbf44be

Browse files
committed
Use deepEqual
1 parent 784c14c commit dbf44be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/vm/test/tester/runners/GeneralStateTestsRunner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ async function runTestCase(options: any, testData: any, t: tape.Test | Chai.Asse
199199
if (isTape(t)) {
200200
t.ok(stateRootsAreEqual, `[ ${timeSpent} ] the state roots should match (${execInfo})`)
201201
} else {
202-
t.strictEqual(stateRootsAreEqual, true, msg)
202+
t.deepEqual(stateManagerStateRoot, testDataPostStateRoot, msg)
203203
}
204204

205205
vm.evm.events!.removeListener('step', stepHandler)

0 commit comments

Comments
 (0)