Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
juliaElastic committed Nov 6, 2023
1 parent cc6a02e commit 6dc08cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/pkg/server/remote_es_output_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func Checkin(t *testing.T, ctx context.Context, srv *tserver, agentID, key strin
require.True(t, ok, "expected outputs to be map")
remoteES, ok := outputs["remoteES"].(map[string]interface{})
require.True(t, ok, "expected remoteES to be map")
oType := remoteES["type"].(string)
oType, ok := remoteES["type"].(string)
require.True(t, ok, "expected type to be string")
require.Equal(t, "elasticsearch", oType)
serviceToken := remoteES["service_token"]
Expand Down

0 comments on commit 6dc08cd

Please sign in to comment.