From 39e8e52d83bd27bd7a0f832c3412db97fbe63f09 Mon Sep 17 00:00:00 2001 From: Gustav Simonsson Date: Wed, 29 Jul 2015 13:02:18 +0200 Subject: [PATCH] test wrapper: remove test reward and temp skip Bruncles --- tests/block_test.go | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/tests/block_test.go b/tests/block_test.go index 6bb1231847..c3279006da 100644 --- a/tests/block_test.go +++ b/tests/block_test.go @@ -17,18 +17,10 @@ package tests import ( - "math/big" "path/filepath" "testing" - - "github.com/ethereum/go-ethereum/core" ) -func init() { - // XXX remove me when block tests have been updated - core.BlockReward = big.NewInt(1.5e+18) -} - func TestBcValidBlockTests(t *testing.T) { err := RunBlockTest(filepath.Join(blockTestDir, "bcValidBlockTest.json"), BlockSkipTests) if err != nil { @@ -37,6 +29,7 @@ func TestBcValidBlockTests(t *testing.T) { } func TestBcUncleTests(t *testing.T) { + t.Skip() // TODO: unskip once Christoph has regenerated it. err := RunBlockTest(filepath.Join(blockTestDir, "bcUncleTest.json"), BlockSkipTests) if err != nil { t.Fatal(err)