diff --git a/wavesrv/pkg/utilfn/utilfn_test.go b/wavesrv/pkg/utilfn/utilfn_test.go index 6523b7db..1faf40bf 100644 --- a/wavesrv/pkg/utilfn/utilfn_test.go +++ b/wavesrv/pkg/utilfn/utilfn_test.go @@ -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 {