Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alrevuelta committed Mar 15, 2023
1 parent dda915b commit 17665f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions metrics/beaconstate_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func Test_GetValidatorsWithLessBalance(t *testing.T) {
prevBeaconState := &spec.VersionedBeaconState{
Altair: &altair.BeaconState{
Slot: 34 * 32,
Balances: []uint64{
Balances: []phase0.Gwei{
1000,
9000,
2000,
Expand All @@ -68,7 +68,7 @@ func Test_GetValidatorsWithLessBalance(t *testing.T) {
currentBeaconState := &spec.VersionedBeaconState{
Altair: &altair.BeaconState{
Slot: 35 * 32,
Balances: []uint64{
Balances: []phase0.Gwei{
900,
9500,
1000,
Expand Down

0 comments on commit 17665f4

Please sign in to comment.