From 7e5a98e4d2f9af4687c0d63a9e8b42e6d6538448 Mon Sep 17 00:00:00 2001 From: John Murret Date: Wed, 24 Apr 2024 13:01:56 -0600 Subject: [PATCH] fix linting error --- dependency/health_service_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dependency/health_service_test.go b/dependency/health_service_test.go index 946a224d2..edf37500f 100644 --- a/dependency/health_service_test.go +++ b/dependency/health_service_test.go @@ -247,7 +247,7 @@ func TestNewHealthServiceQuery(t *testing.T) { tc := test.(testCase) t.Run(fmt.Sprintf("%d_%s", i, tc.name), func(t *testing.T) { act, err := NewHealthServiceQuery(tc.i) - assert.Equal(t, err, tc.err) + assert.Equal(t, tc.err, err) if act != nil { act.stopCh = nil