From af0659da2feb2f0bf0bf4f6691e0167ec30a698e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Eckel?= Date: Tue, 5 Mar 2024 15:37:55 +0100 Subject: [PATCH] removed termination wait group from lib/test/e2e/suite MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jürgen Eckel --- lib/tests/e2e/suite.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/tests/e2e/suite.go b/lib/tests/e2e/suite.go index e4ef2b2..8a9a443 100644 --- a/lib/tests/e2e/suite.go +++ b/lib/tests/e2e/suite.go @@ -9,7 +9,6 @@ import ( clitestutil "github.com/planetmint/planetmint-go/testutil/cli" "github.com/planetmint/planetmint-go/testutil/network" "github.com/planetmint/planetmint-go/testutil/sample" - "github.com/planetmint/planetmint-go/util" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/suite" @@ -37,7 +36,6 @@ func (s *E2ETestSuite) SetupSuite() { // TearDownSuite clean up after testing func (s *E2ETestSuite) TearDownSuite() { - util.TerminationWaitGroup.Wait() s.T().Log("tearing down e2e test suite") }