Skip to content

Commit

Permalink
Authority bdd test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
blewater committed Aug 2, 2021
1 parent d19ffd4 commit 3f786ac
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ test:
go test -mod=readonly ./...

bdd-test:
go test -mod=readonly -v -p 1 -timeout 1h --tags="bdd" bdd_test.go multisigauthority_test.go authority_test.go market_test.go buyback_test.go capacity_test.go staking_test.go bep3swap_test.go upgrade_test.go
go test -mod=readonly -v -p 1 -timeout 1h --tags="bdd" bdd_test.go multisigauthority_test.go authority_test.go market_test.go buyback_test.go capacity_test.go staking_test.go bep3swap_test.go upgrade_test.go

github-ci: build-linux
$(MAKE) test
Expand Down
8 changes: 0 additions & 8 deletions multisigauthority_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,14 +101,6 @@ var _ = Describe("Authority", func() {
)
Expect(err).To(BeNil())

// create/revoke issuer with both the former and the new authority
// former singlesig first
ok = nt.AuthCreatesIssuer(emcli, keystore.Authority, key1)
Expect(ok).To(BeTrue())
_, success, err = emcli.AuthorityDestroyIssuer(keystore.Authority, key1)
Expect(success).To(BeTrue())
Expect(err).ToNot(HaveOccurred())

// current multisig authority now
// create-issuer
execAuthMSigTx(
Expand Down
1 change: 1 addition & 0 deletions networktest/emcli.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ func (cli Emcli) CustomCommand(params ...string) (string, error) {
for _, param := range params {
if re.MatchString(param) {
checkTxRes = false
break
}
}
args := cli.addTransactionFlags(params...)
Expand Down

0 comments on commit 3f786ac

Please sign in to comment.