From 8e03b8f551112e4f25616384709a90513e7e6fe3 Mon Sep 17 00:00:00 2001 From: zhangxu Date: Wed, 13 Oct 2021 15:35:47 +0800 Subject: [PATCH] Fix #282 remove t.Parallel --- raftstore/testutil.go | 1 - 1 file changed, 1 deletion(-) diff --git a/raftstore/testutil.go b/raftstore/testutil.go index ddf29198..5e6f31cb 100644 --- a/raftstore/testutil.go +++ b/raftstore/testutil.go @@ -753,7 +753,6 @@ func NewSingleTestClusterStore(t *testing.T, opts ...TestClusterOption) TestRaft // NewTestClusterStore create test cluster using options func NewTestClusterStore(t *testing.T, opts ...TestClusterOption) TestRaftCluster { - t.Parallel() c := &testRaftCluster{t: t, initOpts: opts} c.reset(true, opts...) return c