From a5679b4f5b2807ffb1e9a84cb6b07787f5b05643 Mon Sep 17 00:00:00 2001 From: Marc Guasch Date: Thu, 11 Jun 2020 09:34:01 +0200 Subject: [PATCH] [filebeat][httpjson] Fix unit test function call --- x-pack/filebeat/input/httpjson/httpjson_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/filebeat/input/httpjson/httpjson_test.go b/x-pack/filebeat/input/httpjson/httpjson_test.go index 9613f16dfb8..b16bdd8119f 100644 --- a/x-pack/filebeat/input/httpjson/httpjson_test.go +++ b/x-pack/filebeat/input/httpjson/httpjson_test.go @@ -513,7 +513,7 @@ func TestOAuth2(t *testing.T) { } defer ts.Close() - runTest(t, false, false, m, func(input *HttpjsonInput, out *stubOutleter, t *testing.T) { + runTest(t, false, false, false, m, func(input *HttpjsonInput, out *stubOutleter, t *testing.T) { group, _ := errgroup.WithContext(context.Background()) group.Go(input.run)