removed termination wait group from lib/test/e2e/suite

Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
This commit is contained in:
Jürgen Eckel 2024-03-05 15:37:55 +01:00
parent ae8d0326e5
commit af0659da2f
No known key found for this signature in database

View File

@ -9,7 +9,6 @@ import (
clitestutil "github.com/planetmint/planetmint-go/testutil/cli" clitestutil "github.com/planetmint/planetmint-go/testutil/cli"
"github.com/planetmint/planetmint-go/testutil/network" "github.com/planetmint/planetmint-go/testutil/network"
"github.com/planetmint/planetmint-go/testutil/sample" "github.com/planetmint/planetmint-go/testutil/sample"
"github.com/planetmint/planetmint-go/util"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/stretchr/testify/suite" "github.com/stretchr/testify/suite"
@ -37,7 +36,6 @@ func (s *E2ETestSuite) SetupSuite() {
// TearDownSuite clean up after testing // TearDownSuite clean up after testing
func (s *E2ETestSuite) TearDownSuite() { func (s *E2ETestSuite) TearDownSuite() {
util.TerminationWaitGroup.Wait()
s.T().Log("tearing down e2e test suite") s.T().Log("tearing down e2e test suite")
} }