Skip to content

Commit

Permalink
Parallelize TestCreateGnoModFile
Browse files Browse the repository at this point in the history
  • Loading branch information
harry-hov committed Aug 2, 2023
1 parent b95edba commit efc2e5b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions gnovm/pkg/gnomod/gnomod_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit efc2e5b

Please sign in to comment.