Skip to content

Commit

Permalink
fix(test): parallelization issues
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Mar 9, 2022
1 parent b5053c9 commit dbcf3fb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion persistence/sql/persister_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,9 @@ func TestPersister(t *testing.T) {
conns := createCleanDatabases(t)
ctx := context.Background()

for name, reg := range conns {
for name := range conns {
name := name
reg := conns[name]
t.Run(fmt.Sprintf("database=%s", name), func(t *testing.T) {
t.Parallel()

Expand Down

0 comments on commit dbcf3fb

Please sign in to comment.