prysm-pulse/fuzz/testing/beacon_fuzz_states_test.go
terence tsao d5ec248691
Rename getter functions to be idiomatic (#8320)
* Rename getter functions

* Rename new

* Radek's feedback

Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
2021-01-25 21:27:30 +00:00

13 lines
200 B
Go

package testing
import (
"testing"
"github.com/prysmaticlabs/prysm/shared/testutil/require"
)
func TestGetBeaconFuzzState(t *testing.T) {
_, err := BeaconFuzzState(1)
require.NoError(t, err)
}