Skip to content

Commit

Permalink
acceptance
Browse files Browse the repository at this point in the history
  • Loading branch information
darioAnongba committed Sep 22, 2021
1 parent ae411de commit c2cd4d2
Showing 1 changed file with 2 additions and 20 deletions.
22 changes: 2 additions & 20 deletions tests/acceptance/acceptance_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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)
}

0 comments on commit c2cd4d2

Please sign in to comment.