Skip to content

Commit

Permalink
fixing linting
Browse files Browse the repository at this point in the history
  • Loading branch information
james-prysm committed Oct 4, 2024
1 parent d58f1fe commit 9be163c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion validator/client/validator_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2963,7 +2963,7 @@ func TestUpdateValidatorStatusCache(t *testing.T) {
for i, pk := range pubkeys {
status, exists := v.pubkeyToStatus[pk]
require.Equal(t, true, exists)
require.DeepEqual(t, pk[:], status.publicKey[:])
require.DeepEqual(t, pk[:], status.publicKey)
require.Equal(t, mockResponse.Statuses[i], status.status)
require.Equal(t, mockResponse.Indices[i], status.index)
}
Expand Down

0 comments on commit 9be163c

Please sign in to comment.