Skip to content

Commit

Permalink
fix: update test to not compare checksums
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Akhterov <daniel@launchbadge.com>
  • Loading branch information
janaakhterov committed Jun 30, 2021
1 parent 75047c2 commit b87ae59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion token_dissociate_transaction_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ func Test_TokenDissociate_NoAccountID(t *testing.T) {

check := false
for _, relation := range info.TokenRelationships {
if tokenID.Token == relation.TokenID.Token {
if tokenID.Shard == relation.TokenID.Shard && tokenID.Realm == relation.TokenID.Realm && tokenID.Token == relation.TokenID.Token {
check = true
}
}
Expand Down

0 comments on commit b87ae59

Please sign in to comment.