Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
callebtc committed Nov 26, 2023
1 parent 81c3931 commit df843bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_mint.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ async def test_get_balance(ledger: Ledger):
@pytest.mark.asyncio
async def test_maximum_balance(ledger: Ledger):
settings.mint_max_balance = 1000
invoice, id = await ledger.mint_quote(PostMintQuoteRequest(amount=8, unit="sat"))
await ledger.mint_quote(PostMintQuoteRequest(amount=8, unit="sat"))
await assert_err(
ledger.mint_quote(PostMintQuoteRequest(amount=8000, unit="sat")),
"Mint has reached maximum balance.",
Expand Down

0 comments on commit df843bb

Please sign in to comment.