Skip to content

Commit

Permalink
Update expected test result basd on conclusion about tally estimator …
Browse files Browse the repository at this point in the history
…attribute
  • Loading branch information
pshriwise committed Sep 16, 2024
1 parent dfc349a commit 6814629
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/unit_tests/test_tallies.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,10 @@ def test_tally_equivalence():
tally_a.nuclides = ['total']
assert tally_a == tally_b

# a tally with an estimator set to None is equal to
# a tally with an estimator specified
tally_a.estimator = 'collision'
assert tally_a != tally_b
assert tally_a == tally_b
tally_b.estimator = 'collision'
assert tally_a == tally_b

Expand Down

0 comments on commit 6814629

Please sign in to comment.