diff --git a/pkg/networkservice/chains/nsmgr/heal_test.go b/pkg/networkservice/chains/nsmgr/heal_test.go index ac54b5b22..f395e908a 100644 --- a/pkg/networkservice/chains/nsmgr/heal_test.go +++ b/pkg/networkservice/chains/nsmgr/heal_test.go @@ -69,7 +69,6 @@ func TestNSMGR_HealEndpoint(t *testing.T) { for _, sample := range samples { t.Run(sample.name, func(t *testing.T) { - // nolint:scopelint testNSMGRHealEndpoint(t, sample.nodeNum) }) } @@ -249,6 +248,8 @@ func TestNSMGRHealEndpoint_DataPlaneBroken_CtrlPlaneHealthy(t *testing.T) { } func TestNSMGRHealEndpoint_DatapathHealthy_CtrlPlaneBroken(t *testing.T) { + t.Skip("https://github.com/networkservicemesh/sdk/issues/1573") + t.Cleanup(func() { goleak.VerifyNone(t) }) ctx, cancel := context.WithTimeout(context.Background(), timeout) @@ -309,7 +310,6 @@ func TestNSMGR_HealForwarder(t *testing.T) { for _, sample := range samples { t.Run(sample.name, func(t *testing.T) { - // nolint:scopelint testNSMGRHealForwarder(t, sample.nodeNum) }) } @@ -391,7 +391,6 @@ func TestNSMGR_HealNSMgr(t *testing.T) { for _, sample := range samples { t.Run(sample.name, func(t *testing.T) { - // nolint:scopelint testNSMGRHealNSMgr(t, sample.nodeNum, sample.restored) }) } @@ -531,7 +530,6 @@ func TestNSMGR_CloseHeal(t *testing.T) { for _, sample := range samples { t.Run(sample.name, func(t *testing.T) { - // nolint:scopelint testNSMGRCloseHeal(t, sample.withNSEExpiration) }) } @@ -645,7 +643,6 @@ func Test_ForwarderShouldBeSelectedCorrectlyOnNSMgrRestart(t *testing.T) { for _, sample := range samples { t.Run(sample.name, func(t *testing.T) { - // nolint:scopelint testForwarderShouldBeSelectedCorrectlyOnNSMgrRestart(t, sample.nodeNum, sample.pathSegmentCount) }) }