diff --git a/stdpopsim/catalog/ChlRei/species.py b/stdpopsim/catalog/ChlRei/species.py index 7c9da0f40..70e2d124a 100644 --- a/stdpopsim/catalog/ChlRei/species.py +++ b/stdpopsim/catalog/ChlRei/species.py @@ -93,7 +93,7 @@ reasons={stdpopsim.CiteReason.POP_SIZE}, # Quebec population ), stdpopsim.Citation( - author="Vitova et al.", + author="Vítová et al", year=2011, doi="https://doi.org/10.1007/s00425-011-1427-7", reasons={stdpopsim.CiteReason.GEN_TIME}, diff --git a/tests/test_ChlRei.py b/tests/test_ChlRei.py index 0d876bbfc..779a28fba 100644 --- a/tests/test_ChlRei.py +++ b/tests/test_ChlRei.py @@ -25,9 +25,8 @@ def test_common_name(self): def test_qc_population_size(self): assert self.species.population_size == 1.4 * 1e-7 - @pytest.mark.skip("Generation time QC not done yet") def test_qc_generation_time(self): - assert self.species.generation_time == -1 + assert self.species.generation_time == 1 / 876 class TestGenomeData(test_species.GenomeTestBase): @@ -84,6 +83,4 @@ def test_recombination_rate(self, name, rate): }.items(), ) def test_mutation_rate(self, name, rate): - print("This is the mutation rate") - print(self.genome.get_chromosome(name).mutation_rate) assert rate == pytest.approx(self.genome.get_chromosome(name).mutation_rate)