From 75c2c4c348beef56b8a4057341a89baae055f34f Mon Sep 17 00:00:00 2001 From: i-norden Date: Mon, 10 Apr 2023 01:27:53 -0500 Subject: [PATCH] don't skip --- pkg/builder_test.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/pkg/builder_test.go b/pkg/builder_test.go index 36143af..cc2dc3f 100644 --- a/pkg/builder_test.go +++ b/pkg/builder_test.go @@ -19,9 +19,7 @@ package statediff_test import ( "bytes" "encoding/json" - "fmt" "math/big" - "os" "sort" "testing" @@ -498,13 +496,6 @@ var ( }) ) -func init() { - if os.Getenv("MODE") != "statediff" { - fmt.Println("Skipping statediff test") - os.Exit(0) - } -} - func TestBuilder(t *testing.T) { blocks, chain := test_helpers.MakeChain(3, test_helpers.Genesis, test_helpers.TestChainGen) contractLeafKey = test_helpers.AddressToLeafKey(test_helpers.ContractAddr)