From 2df0226ca8e3bded193aebfbf0ad549f6adc3e0b Mon Sep 17 00:00:00 2001 From: Chris Pates Date: Wed, 28 Aug 2024 13:43:38 +0100 Subject: [PATCH] Update sync_test.go --- internal/sync_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/sync_test.go b/internal/sync_test.go index f76e32fc..9b2fa108 100644 --- a/internal/sync_test.go +++ b/internal/sync_test.go @@ -37,7 +37,7 @@ import ( func toJSON(stc interface{}) []byte { JSON, err := json.MarshalIndent(stc, "", " ") if err != nil { - log.Fatalf(err.Error()) + log.Fatal(err) } return JSON }