Skip to content

Commit

Permalink
remove nolint
Browse files Browse the repository at this point in the history
  • Loading branch information
esimkowitz committed Dec 13, 2023
1 parent 5d39815 commit 4149379
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wavesrv/pkg/utilfn/utilfn_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func TestDiff(t *testing.T) {
testDiff(t, Str3, Str1)
}

func testArithmetic(t *testing.T, fn func() (int, error), shouldError bool, expected int) { // nolint: unparam
func testArithmetic(t *testing.T, fn func() (int, error), shouldError bool, expected int) {
retVal, err := fn()
if err != nil {
if !shouldError {
Expand Down

0 comments on commit 4149379

Please sign in to comment.