diff --git a/tests/test_vm_json.nim b/tests/test_vm_json.nim index eaa0c0cb6..f8a13f5be 100644 --- a/tests/test_vm_json.nim +++ b/tests/test_vm_json.nim @@ -91,7 +91,7 @@ proc testFixture(fixtures: JsonNode, testStatusIMPL: var TestStatus) = if not fixture{"post"}.isNil: verifyStateDb(fixture{"post"}, computation.vmState.readOnlyStateDB) else: - # Error checks - check(computation.isError) - # TODO postState = fixture{"pre"} - + # Error checks + check(computation.isError) + if not fixture{"pre"}.isNil: + verifyStateDb(fixture{"pre"}, computation.vmState.readOnlyStateDB)