From 70e513cac46a668cebea6c4b8a6c6cb10c052043 Mon Sep 17 00:00:00 2001 From: marcello33 Date: Thu, 6 Feb 2025 13:11:05 +0100 Subject: [PATCH] POS-2821: solve lint issues --- metrics/json_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metrics/json_test.go b/metrics/json_test.go index 44d20a6225..58c87616ad 100644 --- a/metrics/json_test.go +++ b/metrics/json_test.go @@ -14,7 +14,7 @@ func TestRegistryMarshallJSON(t *testing.T) { enc.Encode(r) if s := b.String(); s != "{\"counter\":{\"count\":0}}\n" { - t.Fatalf(s) + t.Fatal(s) } }