From 3fc45ea1ee39be22bb7bfcc3a6be45e36dae331a Mon Sep 17 00:00:00 2001 From: Juan Font Date: Mon, 28 Nov 2022 20:29:32 +0000 Subject: [PATCH] Add nolint for t.parallel --- integration/general_test.go | 4 ++-- integration/scenario_test.go | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/integration/general_test.go b/integration/general_test.go index 27c62fff..e664df19 100644 --- a/integration/general_test.go +++ b/integration/general_test.go @@ -122,9 +122,9 @@ func TestPingAllByHostname(t *testing.T) { } } -func TestTaildrop(t *testing.T) { +func TestTaildrop(t *testing.T) { // nolint IntegrationSkip(t) - t.Parallel() + t.Parallel() // nolint retry := func(times int, sleepInverval time.Duration, doWork func() error) error { var err error diff --git a/integration/scenario_test.go b/integration/scenario_test.go index 363f8e37..9a2008ec 100644 --- a/integration/scenario_test.go +++ b/integration/scenario_test.go @@ -21,7 +21,7 @@ func IntegrationSkip(t *testing.T) { } } -func TestHeadscale(t *testing.T) { +func TestHeadscale(t *testing.T) { // nolint IntegrationSkip(t) t.Parallel() @@ -70,7 +70,7 @@ func TestHeadscale(t *testing.T) { } } -func TestCreateTailscale(t *testing.T) { +func TestCreateTailscale(t *testing.T) { // nolint IntegrationSkip(t) t.Parallel() @@ -104,7 +104,7 @@ func TestCreateTailscale(t *testing.T) { } } -func TestTailscaleNodesJoiningHeadcale(t *testing.T) { +func TestTailscaleNodesJoiningHeadcale(t *testing.T) { // nolint IntegrationSkip(t) t.Parallel()