mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-07 22:54:17 -05:00
24 lines
565 B
Go
24 lines
565 B
Go
//go:build !minimal
|
|
|
|
package field_params_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
fieldparams "github.com/OffchainLabs/prysm/v7/config/fieldparams"
|
|
"github.com/OffchainLabs/prysm/v7/config/params"
|
|
"github.com/OffchainLabs/prysm/v7/testing/require"
|
|
)
|
|
|
|
func TestFieldParametersValues(t *testing.T) {
|
|
min, err := params.ByName(params.MainnetName)
|
|
require.NoError(t, err)
|
|
undo, err := params.SetActiveWithUndo(min)
|
|
require.NoError(t, err)
|
|
defer func() {
|
|
require.NoError(t, undo())
|
|
}()
|
|
require.Equal(t, "mainnet", fieldparams.Preset)
|
|
testFieldParametersMatchConfig(t)
|
|
}
|