From 9f89cd9fbbcec9f7f42c87ee0adc21427aab9f1c Mon Sep 17 00:00:00 2001 From: Jeff Halter <868228+jhalter@users.noreply.github.com> Date: Fri, 19 Jul 2024 16:50:28 -0700 Subject: Appease linter --- hotline/field_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hotline/field_test.go') diff --git a/hotline/field_test.go b/hotline/field_test.go index fc11c74..213d9c3 100644 --- a/hotline/field_test.go +++ b/hotline/field_test.go @@ -222,7 +222,7 @@ func TestField_DecodeInt(t *testing.T) { Data: tt.fields.Data, } got, err := f.DecodeInt() - if !tt.wantErr(t, err, fmt.Sprintf("DecodeInt()")) { + if !tt.wantErr(t, err) { return } assert.Equalf(t, tt.want, got, "DecodeInt()") -- cgit