From 85f9ab8b40d3162957964f3cca537c7eb0ba011b Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Fri, 13 Dec 2024 15:56:48 +0100 Subject: [PATCH] fix cache tests --- tests/test_mint_api_cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_mint_api_cache.py b/tests/test_mint_api_cache.py index 69e6049f..5776feda 100644 --- a/tests/test_mint_api_cache.py +++ b/tests/test_mint_api_cache.py @@ -46,7 +46,7 @@ async def test_api_mint_cached_responses(wallet: Wallet): ) response1 = httpx.post( f"{BASE_URL}/v1/mint/bolt11", - json={"quote": quote_id, "outputs": outputs_payload}, + json={"quote": quote_id, "outputs": outputs_payload, "signature": signature}, timeout=None, ) assert response.status_code == 200, f"{response.status_code = }"