Skip to content

Commit

Permalink
tests passing locally
Browse files Browse the repository at this point in the history
  • Loading branch information
shimwell committed Aug 1, 2024
1 parent 42bc6d0 commit 70f4e3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_point_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def test_creation():
assert isinstance(source.angle, openmc.stats.Isotropic)
assert isinstance(source.energy, openmc.stats.univariate.Normal) or isinstance(
source.energy, openmc.stats.univariate.Tabular
)
) or isinstance(source.energy, openmc.stats.Mixture)


@pytest.mark.parametrize(
Expand Down
2 changes: 1 addition & 1 deletion tests/test_ring_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def test_creation():
assert isinstance(source.angle, openmc.stats.Isotropic)
assert isinstance(source.energy, openmc.stats.univariate.Normal) or isinstance(
source.energy, openmc.stats.univariate.Tabular
)
) or isinstance(source.energy, openmc.stats.Mixture)


@pytest.mark.parametrize("radius", [1, 5.6, 1e5, 7.0])
Expand Down

0 comments on commit 70f4e3b

Please sign in to comment.