diff options
Diffstat (limited to 'tests/block_test_util.go')
-rw-r--r-- | tests/block_test_util.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/block_test_util.go b/tests/block_test_util.go index 224c14283..e60607c0f 100644 --- a/tests/block_test_util.go +++ b/tests/block_test_util.go @@ -134,7 +134,8 @@ func runBlockTest(name string, test *BlockTest, t *testing.T) { if err = test.ValidatePostState(statedb); err != nil { t.Fatal("post state validation failed: %v", err) } - t.Log("Test passed: ", name) + fmt.Println("Block test passed: ", name) + // t.Log("Block test passed: ", name) } func testEthConfig() *eth.Config { |