Skip to content

Commit 887ed33

Browse files
committed
Fixing lint
1 parent 4d14c0b commit 887ed33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exporter/splunkhecexporter/client_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1319,8 +1319,8 @@ func TestErrorReceived(t *testing.T) {
13191319
}
13201320
errMsg := fmt.Sprintf("HTTP %q %d %q",
13211321
cfg.ClientConfig.Endpoint,
1322-
500,
1323-
http.StatusText(500),
1322+
http.StatusInternalServerError,
1323+
http.StatusText(http.StatusInternalServerError),
13241324
)
13251325
assert.EqualError(t, err, errMsg)
13261326
}

0 commit comments

Comments
 (0)