Skip to content

Commit

Permalink
missing await
Browse files Browse the repository at this point in the history
  • Loading branch information
emlowe committed Nov 8, 2024
1 parent 933f5ed commit a3a8d9c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions chia/_tests/pools/test_pool_cmdline.py
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,6 @@ async def test_plotnft_cli_join(

runner = CliRunner()
with runner.isolated_filesystem():

# Test error cases
# No pool wallet found
with pytest.raises(CliRpcConnectionError, match="No pool wallet found"):
Expand Down Expand Up @@ -500,8 +499,8 @@ async def test_plotnft_cli_join(

await wallet_environments.full_node.farm_blocks_to_puzzlehash(count=3, guarantee_transaction_blocks=True)

verify_pool_state(wallet_rpc, wallet_id, PoolSingletonState.LEAVING_POOL)
await verify_pool_state(wallet_rpc, wallet_id, PoolSingletonState.LEAVING_POOL)

await wallet_environments.full_node.farm_blocks_to_puzzlehash(count=12, guarantee_transaction_blocks=True)

verify_pool_state(wallet_rpc, wallet_id, PoolSingletonState.FARMING_TO_POOL)
await verify_pool_state(wallet_rpc, wallet_id, PoolSingletonState.FARMING_TO_POOL)

0 comments on commit a3a8d9c

Please sign in to comment.