From 0346df0adc668c265d1e734e83726caa2d62aad9 Mon Sep 17 00:00:00 2001 From: Jeffrey Reep Date: Mon, 12 Aug 2024 12:00:41 -1000 Subject: [PATCH] fix typos in tests --- fiasco/tests/test_collections.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fiasco/tests/test_collections.py b/fiasco/tests/test_collections.py index 050fe1b0..c93b37df 100644 --- a/fiasco/tests/test_collections.py +++ b/fiasco/tests/test_collections.py @@ -141,7 +141,7 @@ def test_radiative_loss_bound_bound(collection, hdf5_dbase_root): # These values have not been checked for correctness u.allclose(rl[0], [3.90235371e-24, 4.06540902e-24, 4.08411295e-24] * u.erg * u.cm**3 / u.s) -@pytest.mark.requires_dbase_version('>=8') +@pytest.mark.requires_dbase_version('>= 8') def test_radiative_loss_free_free(collection, hdf5_dbase_root): # add Li III to the test to include an ion that throws a MissingDatasetException collection = collection + fiasco.Ion('Li III', collection.temperature, hdf5_dbase_root=hdf5_dbase_root) @@ -150,7 +150,7 @@ def test_radiative_loss_free_free(collection, hdf5_dbase_root): # This value has not been checked for correctness u.isclose(rl[0], 2.72706455e-35 * u.erg * u.cm**3 / u.s) -@pytest.mark.requires_dbase_version('>=8') +@pytest.mark.requires_dbase_version('>= 8') def test_radiative_loss_free_bound(collection, hdf5_dbase_root): # add Li III to the test to include an ion that throws a MissingDatasetException collection = collection + fiasco.Ion('Li III', collection.temperature, hdf5_dbase_root=hdf5_dbase_root)