diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-08-22 20:06:02 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-22 20:06:02 +0800 |
commit | fc5f8a3dda29712c619e9df99e7f8b1ebc2c8ea7 (patch) | |
tree | 206aa84c916659010daa3400459285428b96f7b3 | |
parent | 2fd5ba6bd41380cf0e21d3ec0ca4bbc4aa7b6c34 (diff) | |
parent | 3cc476c8abd7cd00fa70464d023cb10f1f0b991d (diff) | |
download | go-tangerine-fc5f8a3dda29712c619e9df99e7f8b1ebc2c8ea7.tar.gz go-tangerine-fc5f8a3dda29712c619e9df99e7f8b1ebc2c8ea7.tar.zst go-tangerine-fc5f8a3dda29712c619e9df99e7f8b1ebc2c8ea7.zip |
Merge pull request #15022 from karalabe/enable-byzantium-state-tests
tests: enable Byzantium state tests for CI
-rw-r--r-- | tests/state_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/state_test.go b/tests/state_test.go index 7e5516e7e..00067c61a 100644 --- a/tests/state_test.go +++ b/tests/state_test.go @@ -50,8 +50,8 @@ func TestState(t *testing.T) { key := fmt.Sprintf("%s/%d", subtest.Fork, subtest.Index) name := name + "/" + key t.Run(key, func(t *testing.T) { - if subtest.Fork == "Constantinople" || subtest.Fork == "Byzantium" { - t.Skip("constantinople, byzantium not supported yet") + if subtest.Fork == "Constantinople" { + t.Skip("constantinople not supported yet") } withTrace(t, test.gasLimit(subtest), func(vmconfig vm.Config) error { return st.checkFailure(t, name, test.Run(subtest, vmconfig)) |