Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
rohan-agarwal-coinbase committed Nov 27, 2024
1 parent fb669b6 commit 41e78e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_wallet_address.py
Original file line number Diff line number Diff line change
Expand Up @@ -1076,7 +1076,7 @@ def test_quote_fund(mock_fund_quote, wallet_address_factory):
assert isinstance(fund_quote, FundQuote)
mock_fund_quote.create.assert_called_once_with(
address_id=wallet_address.address_id,
amount="1.0",
amount=Decimal("1.0"),
asset_id="eth",
network_id=wallet_address.network_id,
wallet_id=wallet_address.wallet_id,
Expand All @@ -1095,7 +1095,7 @@ def test_quote_fund_api_error(mock_fund_quote, wallet_address_factory):

mock_fund_quote.create.assert_called_once_with(
address_id=wallet_address.address_id,
amount="1.0",
amount=Decimal("1.0"),
asset_id="eth",
network_id=wallet_address.network_id,
wallet_id=wallet_address.wallet_id,
Expand Down

0 comments on commit 41e78e1

Please sign in to comment.