cmd/geth: fixed parallelization flaw in account import test (#22002)

This commit is contained in:
Marius van der Wijden 2020-12-14 14:08:53 +01:00 committed by GitHub
parent 017831dd5b
commit 4859929798
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -102,6 +102,7 @@ func TestAccountImport(t *testing.T) {
},
}
for _, test := range tests {
test := test
t.Run(test.name, func(t *testing.T) {
t.Parallel()
importAccountWithExpect(t, test.key, test.output)