Skip to content

Commit

Permalink
fix typos in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeffrey Reep committed Aug 12, 2024
1 parent 66311a9 commit 0346df0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fiasco/tests/test_collections.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down

0 comments on commit 0346df0

Please sign in to comment.