mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-08 23:18:15 -05:00
18 lines
333 B
Go
18 lines
333 B
Go
package epoch_processing
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/config/params"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
prevConfig := params.BeaconConfig().Copy()
|
|
defer params.OverrideBeaconConfig(prevConfig)
|
|
c := params.BeaconConfig()
|
|
c.MinGenesisActiveValidatorCount = 16384
|
|
params.OverrideBeaconConfig(c)
|
|
|
|
m.Run()
|
|
}
|