From efc2e5baea9877685b84b3b8d21e9bf5884e6a56 Mon Sep 17 00:00:00 2001 From: Hariom Verma Date: Wed, 2 Aug 2023 16:06:43 +0800 Subject: [PATCH] Parallelize TestCreateGnoModFile --- gnovm/pkg/gnomod/gnomod_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnovm/pkg/gnomod/gnomod_test.go b/gnovm/pkg/gnomod/gnomod_test.go index fc483f75c97..a8a0c993bea 100644 --- a/gnovm/pkg/gnomod/gnomod_test.go +++ b/gnovm/pkg/gnomod/gnomod_test.go @@ -117,7 +117,10 @@ func TestCreateGnoModFile(t *testing.T) { errShouldContain: "gno.mod file already exists", }, } { + tc := tc t.Run(tc.desc, func(t *testing.T) { + t.Parallel() + // Create test dir dirPath, cleanUpFn := testutils.NewTestCaseDir(t) require.NotNil(t, dirPath)