mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-15 14:38:20 +00:00
3d6fad3121
* Update Prater config after https://github.com/eth2-clients/eth2-networks/pull/58. Add tests to enforce compliance. * gofmt * spec: true * fix test Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
13 lines
292 B
Go
13 lines
292 B
Go
package params
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestPraterConfigMatchesUpstreamYaml(t *testing.T) {
|
|
configFP := testnetConfigFilePath(t, "prater")
|
|
LoadChainConfigFile(configFP)
|
|
fields := fieldsFromYaml(t, configFP)
|
|
assertYamlFieldsMatch(t, "prater", fields, BeaconConfig(), PraterConfig())
|
|
}
|