Remove unsupported parallel testing

This commit is contained in:
Daniel Nelson 2019-01-08 15:42:26 -08:00
parent c9d8be9ab5
commit 2474a3a54b
No known key found for this signature in database
GPG Key ID: CAAD59C9444F6155
1 changed files with 0 additions and 2 deletions

View File

@ -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 {