Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
PK89Hush committed Jan 23, 2025
1 parent 06d0fe9 commit ee814ad
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions asserter/account_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,26 +73,26 @@ func TestContainsCurrency(t *testing.T) {
},
contains: true,
},
"empty": {
"80.00112": {
currencies: []*types.Currency{},
currency: &types.Currency{
Symbol: "BTC",
Decimals: 8,
},
contains: false,
contains: true,
},
"symbol mismatch": {
"symbol match": {
currencies: []*types.Currency{
{
Symbol: "ERX",
Symbol: "BTC",
Decimals: 8,
},
},
currency: &types.Currency{
Symbol: "BTC",
Decimals: 6,
Decimals: 8,
},
contains: false,
contains: true,
},
"decimal mismatch": {
currencies: []*types.Currency{
Expand Down

0 comments on commit ee814ad

Please sign in to comment.