diff --git a/tests/acceptance/acceptance_test.go b/tests/acceptance/acceptance_test.go index 5e5ac93ed..5085a8e42 100644 --- a/tests/acceptance/acceptance_test.go +++ b/tests/acceptance/acceptance_test.go @@ -4,17 +4,13 @@ package acceptancetests import ( "context" + "github.com/consensys/quorum-key-manager/src/auth/authorizator" + "github.com/consensys/quorum-key-manager/src/auth/types" "github.com/consensys/quorum-key-manager/src/stores/connectors/utils" - "math/rand" "os" "testing" - "time" - - "github.com/consensys/quorum-key-manager/src/auth/authorizator" - "github.com/consensys/quorum-key-manager/src/auth/types" "github.com/consensys/quorum-key-manager/pkg/common" - aliaspg "github.com/consensys/quorum-key-manager/src/aliases/store/postgres" "github.com/consensys/quorum-key-manager/src/stores/connectors/ethereum" "github.com/consensys/quorum-key-manager/src/stores/connectors/keys" "github.com/consensys/quorum-key-manager/src/stores/connectors/secrets" @@ -154,17 +150,3 @@ func (s *storeTestSuite) TestKeyManagerStore_Eth() { testSuite.db = db.ETHAccounts(storeName) suite.Run(s.T(), testSuite) } - -func (s *storeTestSuite) TestKeyManagerAliases() { - if s.err != nil { - s.env.logger.Warn("skipping test...") - return - } - - testSuite := new(aliasStoreTestSuite) - testSuite.env = s.env - testSuite.srv = aliaspg.NewDatabase(s.env.postgresClient).Alias() - randSrc := rand.NewSource(time.Now().UnixNano()) - testSuite.rand = rand.New(randSrc) - suite.Run(s.T(), testSuite) -}