internal/wire: mark tests as parallelizable (#218)

This commit is contained in:
Ross Light
2019-10-25 15:00:03 -07:00
committed by shantuo
parent f240b7ac70
commit 0d3b2ebd4a
2 changed files with 1 additions and 7 deletions

View File

@@ -72,9 +72,7 @@ func TestWire(t *testing.T) {
for _, test := range tests {
test := test
t.Run(test.name, func(t *testing.T) {
// TODO(light): These tests should be parallelizable, but this causes
// intermittent failures. See https://github.com/google/wire/issues/66
// for details.
t.Parallel()
// Materialize a temporary GOPATH directory.
gopath, err := ioutil.TempDir("", "wire_test")