diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-01-12 18:08:56 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-12 18:08:56 +0800 |
commit | 3dab303826a4a6bcfe6c804daa947e704eaf9708 (patch) | |
tree | b98e157691c761e5b5c6b7ed3df36868b81e24f6 | |
parent | ce7822c1301a1eccddb1b56920a4b5bd70d49b48 (diff) | |
parent | 3160fd24baa6800d9cdf841cf4f0963a5777c6ad (diff) | |
download | go-tangerine-3dab303826a4a6bcfe6c804daa947e704eaf9708.tar.gz go-tangerine-3dab303826a4a6bcfe6c804daa947e704eaf9708.tar.zst go-tangerine-3dab303826a4a6bcfe6c804daa947e704eaf9708.zip |
Merge pull request #3555 from obscuren/unskip-test
tests: unskip test
-rw-r--r-- | tests/state_test_util.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/state_test_util.go b/tests/state_test_util.go index 7841aecfe..5469a4c71 100644 --- a/tests/state_test_util.go +++ b/tests/state_test_util.go @@ -108,7 +108,7 @@ func runStateTests(chainConfig *params.ChainConfig, tests map[string]VmTest, ski } for name, test := range tests { - if skipTest[name] || name != "loop_stacklimit_1021" { + if skipTest[name] { glog.Infoln("Skipping state test", name) continue } |