From c90ba92bf52f883e8b0ddcd8172fb4e2b92009be Mon Sep 17 00:00:00 2001 From: Fernandez Ludovic Date: Wed, 26 Jun 2024 09:10:07 +0200 Subject: [PATCH] chore: remove exclusion --- test/bench/bench_test.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/bench/bench_test.go b/test/bench/bench_test.go index c612c4141c1a..c35945fbaec5 100644 --- a/test/bench/bench_test.go +++ b/test/bench/bench_test.go @@ -385,9 +385,7 @@ func getLinterNames(tb testing.TB, fastOnly bool) []string { tb.Helper() // add linter names here if needed. - excluded := []string{ - "tparallel", // bug with go source code https://github.com/moricho/tparallel/pull/27 - } + var excluded []string linters, err := lintersdb.NewLinterBuilder().Build(config.NewDefault()) require.NoError(tb, err)