Disable TestExecutionSpec in e3 (#8076)

This commit is contained in:
Andrew Ashikhmin 2023-08-25 12:43:29 +02:00 committed by GitHub
parent 32ca0e5ab1
commit a03e85e749
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,10 +4,15 @@ import (
"path/filepath"
"testing"
"github.com/ledgerwatch/erigon/eth/ethconfig"
"github.com/ledgerwatch/log/v3"
)
func TestExecutionSpec(t *testing.T) {
if ethconfig.EnableHistoryV3InTest {
t.Skip("fix me in e3 please")
}
defer log.Root().SetHandler(log.Root().GetHandler())
log.Root().SetHandler(log.LvlFilterHandler(log.LvlError, log.StderrHandler))