From 2474a3a54b9c3b2a240100dd1f45ab0ed3136c2f Mon Sep 17 00:00:00 2001 From: Daniel Nelson Date: Tue, 8 Jan 2019 15:42:26 -0800 Subject: [PATCH] Remove unsupported parallel testing --- plugins/inputs/neptune_apex/neptune_apex_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins/inputs/neptune_apex/neptune_apex_test.go b/plugins/inputs/neptune_apex/neptune_apex_test.go index 1d554149e..4a3cc6458 100644 --- a/plugins/inputs/neptune_apex/neptune_apex_test.go +++ b/plugins/inputs/neptune_apex/neptune_apex_test.go @@ -44,7 +44,6 @@ func TestGather(t *testing.T) { for _, test := range tests { test := test t.Run(test.name, func(t *testing.T) { - t.Parallel() var acc testutil.Accumulator n.Servers = test.servers n.Gather(&acc) @@ -334,7 +333,6 @@ func TestParseXML(t *testing.T) { for _, test := range tests { test := test t.Run(test.name, func(t *testing.T) { - t.Parallel() var acc testutil.Accumulator err := n.parseXML(&acc, []byte(test.xmlResponse)) if (err != nil) != test.wantErr {