From 414937911e42b9ffb260ccb5658d6b646996e925 Mon Sep 17 00:00:00 2001 From: Evan Simkowitz Date: Tue, 12 Dec 2023 17:40:05 -0800 Subject: [PATCH] remove nolint --- wavesrv/pkg/utilfn/utilfn_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wavesrv/pkg/utilfn/utilfn_test.go b/wavesrv/pkg/utilfn/utilfn_test.go index 6523b7dbc..1faf40bf6 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 {