From 29b8d5d295c33205d2bad71fe27409902612000f Mon Sep 17 00:00:00 2001 From: ying-jeanne <74549700+ying-jeanne@users.noreply.github.com> Date: Thu, 7 Apr 2022 15:45:03 +0200 Subject: [PATCH] remove the parallele to avoid concurrency (#47447) --- pkg/schema/load/load_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/schema/load/load_test.go b/pkg/schema/load/load_test.go index e7d3c1e310c..65d7655bac5 100644 --- a/pkg/schema/load/load_test.go +++ b/pkg/schema/load/load_test.go @@ -36,7 +36,6 @@ type testfunc func(*testing.T, schema.VersionedCueSchema, []byte, fs.FileInfo, s // TODO: remove validdir once we can test directly with devenv folder var doTestAgainstDevenv = func(sch schema.VersionedCueSchema, validdir string, fn testfunc) func(t *testing.T) { return func(t *testing.T) { - t.Parallel() require.NoError(t, filepath.Walk(validdir, func(path string, d fs.FileInfo, err error) error { require.NoError(t, err)