Skip to content

Commit

Permalink
fix linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
jmurret committed May 2, 2024
1 parent aafef51 commit 7e5a98e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dependency/health_service_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7e5a98e

Please sign in to comment.