Skip to content

Commit

Permalink
fix assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
llama-del-rey committed Nov 10, 2022
1 parent eee112b commit da71a40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/bank/keeper/msg_server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func TestUpdateDenomMetadata(t *testing.T) {
} else {
require.NoError(t, err)
metadata, _ := app.BankKeeper.GetDenomMetaData(ctx, "diamondback")
require.Equal(t, testCase.req.Metadata, metadata)
require.Equal(t, testCase.req.Metadata.String(), metadata.String())
}
})
}
Expand Down

0 comments on commit da71a40

Please sign in to comment.