Skip to content

Commit

Permalink
reset groupID
Browse files Browse the repository at this point in the history
  • Loading branch information
czarcas7ic committed Feb 14, 2024
1 parent 48efcb1 commit 015514f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/e2e/group/tx.go
Original file line number Diff line number Diff line change
Expand Up @@ -2486,9 +2486,9 @@ func (s *E2ETestSuite) TestExecProposalsWhenMemberLeavesOrIsUpdated() {
}

func (s *E2ETestSuite) getGroupIDFromTxResponse(txResp sdk.TxResponse) string {
s.Require().Greater(len(txResp.Events), 0)
s.Require().NotNil(txResp.Events[0])
events := txResp.Events
s.Require().Greater(len(txResp.Logs), 0)
s.Require().NotNil(txResp.Logs[0].Events)
events := txResp.Logs[0].Events
createProposalEvent, _ := sdk.TypedEventToEvent(&group.EventSubmitProposal{})

for _, e := range events {
Expand Down

0 comments on commit 015514f

Please sign in to comment.