Skip to content

Commit

Permalink
failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
JeancarloBarrios committed Nov 26, 2022
1 parent 4319906 commit d527982
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion simapp/app_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,11 @@ func TestSimAppExportAndBlockedAddrs(t *testing.T) {
})

for acc := range BlockedAddresses() {
accAddr, err := sdk.AccAddressFromBech32(acc)
require.NoError(t, err)
require.True(
t,
app.BankKeeper.BlockedAddr(app.AccountKeeper.GetModuleAddress(acc)),
app.BankKeeper.BlockedAddr(accAddr),
fmt.Sprintf("ensure that blocked addresses are properly set in bank keeper: %s should be blocked", acc),
)
}
Expand Down

0 comments on commit d527982

Please sign in to comment.