From 02e63eef834da57da1ef9e590ab7c2ddc5ab1190 Mon Sep 17 00:00:00 2001 From: Gregor Gorjanc Date: Sun, 22 Dec 2024 10:25:43 +0000 Subject: [PATCH] Squash one test warning that was not intended/needed --- tests/test_models.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_models.py b/tests/test_models.py index e4a499e57..24fa5df3c 100644 --- a/tests/test_models.py +++ b/tests/test_models.py @@ -438,7 +438,9 @@ def test_recombination_rate_match(self): contig = species.get_contig(length=100) assert model.recombination_rate != contig.recombination_map.mean_rate contig = species.get_contig( - length=100, recombination_rate=model.recombination_rate + length=100, + mutation_rate=model.mutation_rate, + recombination_rate=model.recombination_rate, ) assert model.recombination_rate == contig.recombination_map.mean_rate