Skip to content

Commit c1548ba

Browse files
committed
One more time needing a close
1 parent 9666a2c commit c1548ba

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

chia/_tests/fee_estimation/test_fee_estimation_rpc.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ async def test_empty_request(setup_node_and_rpc: tuple[FullNodeRpcClient, FullNo
8787

8888
@pytest.mark.anyio
8989
async def test_empty_peak(one_node_no_blocks: tuple[FullNodeRpcClient, FullNodeRpcApi]) -> None:
90-
_client, full_node_rpc_api = one_node_no_blocks
90+
client, full_node_rpc_api = one_node_no_blocks
9191
response = await full_node_rpc_api.get_fee_estimate({"target_times": [], "cost": 1})
9292
del response["node_time_utc"]
9393
assert response == {
@@ -107,6 +107,9 @@ async def test_empty_peak(one_node_no_blocks: tuple[FullNodeRpcClient, FullNodeR
107107
"num_spends": 0,
108108
}
109109

110+
client.close()
111+
await client.await_closed()
112+
110113

111114
@pytest.mark.anyio
112115
async def test_no_target_times(setup_node_and_rpc: tuple[FullNodeRpcClient, FullNodeRpcApi]) -> None:

0 commit comments

Comments
 (0)