Skip to content

Commit

Permalink
Fix make fmt check
Browse files Browse the repository at this point in the history
  • Loading branch information
maximopalopoli committed Jan 17, 2025
1 parent c7cdca5 commit 2aa773c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion chainio/clients/elcontracts/reader_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -806,7 +806,11 @@ func TestInvalidConfig(t *testing.T) {

t.Run("try to get the delegated operator shares with invalid config", func(t *testing.T) {
// GetDelegatedOperator needs a correct DelegationManagerAddress
_, err := chainReader.GetDelegatedOperator(context.Background(), common.HexToAddress(operator.Address), big.NewInt(0))
_, err := chainReader.GetDelegatedOperator(
context.Background(),
common.HexToAddress(operator.Address),
big.NewInt(0),
)
require.Error(t, err)
})
}

0 comments on commit 2aa773c

Please sign in to comment.