mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-04 00:44:27 +00:00
b6607fac25
* fixes timer leak in CountdownToGenesis * Merge branch 'master' into fix-unclosed-timer-in-countdown * Merge refs/heads/master into fix-unclosed-timer-in-countdown
17 lines
212 B
Go
17 lines
212 B
Go
package slotutil
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
logrus.SetLevel(logrus.DebugLevel)
|
|
logrus.SetOutput(ioutil.Discard)
|
|
|
|
os.Exit(m.Run())
|
|
}
|