Skip to content

Commit

Permalink
Fix test (#3350)
Browse files Browse the repository at this point in the history
  • Loading branch information
mariano54 committed May 4, 2021
1 parent b759958 commit c72d065
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/core/test_farmer_harvester_rpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,10 @@ async def have_plots():

await client_2.delete_plot(str(plot_dir / filename))
await client_2.delete_plot(str(plot_dir / filename_2))
await client_2.refresh_plots()
res_3 = await client_2.get_plots()
assert len(res_3["plots"]) == num_plots

assert len(res_3["plots"]) == num_plots + 1

await client_2.remove_plot_directory(str(plot_dir))
assert len(await client_2.get_plot_directories()) == 2
Expand Down

0 comments on commit c72d065

Please sign in to comment.