From e1f262dd9e533259803b567d72a84809c453efd2 Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Sun, 11 Aug 2024 21:38:41 +0100 Subject: [PATCH] parallelize test amongst other tests --- graph_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/graph_test.go b/graph_test.go index 832d308..e3d2346 100644 --- a/graph_test.go +++ b/graph_test.go @@ -398,6 +398,8 @@ func TestSendBlocking(t *testing.T) { } func TestGraph_process_StopRootRangeOnContextCancelled(t *testing.T) { + t.Parallel() + seen := atomic.Bool{} ctx, cancel := context.WithCancel(context.Background()) l := &sync.RWMutex{}