mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 03:51:29 +00:00
0b1a777d62
* ran gofmt @ v1.17, these are the resulting changes * fix some flaky tests that are tripping up this PR * gofmt Co-authored-by: Kasey Kirkham <kasey@users.noreply.github.com>
19 lines
412 B
Go
19 lines
412 B
Go
//go:build !minimal
|
|
// +build !minimal
|
|
|
|
package field_params_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
fieldparams "github.com/prysmaticlabs/prysm/config/fieldparams"
|
|
"github.com/prysmaticlabs/prysm/config/params"
|
|
"github.com/prysmaticlabs/prysm/testing/assert"
|
|
)
|
|
|
|
func TestFieldParametersValues(t *testing.T) {
|
|
params.UseMainnetConfig()
|
|
assert.Equal(t, "mainnet", fieldparams.Preset)
|
|
testFieldParametersMatchConfig(t)
|
|
}
|