From 60e5fa3d2ad03b8333b5313f11e1b309ea8a7c9d Mon Sep 17 00:00:00 2001 From: Marie Weiel Date: Tue, 23 Apr 2024 18:49:43 +0200 Subject: [PATCH] fix island sizes --- tests/test_island.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_island.py b/tests/test_island.py index 4c1e0cdb..b3d9d0e1 100644 --- a/tests/test_island.py +++ b/tests/test_island.py @@ -328,7 +328,7 @@ def test_checkpointing_unequal_populations( rng=rng, generations=100, num_islands=2, - island_sizes=np.array([1, 3]), + island_sizes=np.array([3, 5]), migration_probability=0.9, pollination=False, # TODO fixtureize checkpoint_path=mpi_tmp_path,