mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-16 06:58:20 +00:00
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())
|
||
|
}
|