From 6814629fe821dc1160e9e33938c884455933f6dd Mon Sep 17 00:00:00 2001 From: Patrick Shriwise Date: Mon, 16 Sep 2024 14:15:31 -0500 Subject: [PATCH] Update expected test result basd on conclusion about tally estimator attribute --- tests/unit_tests/test_tallies.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/unit_tests/test_tallies.py b/tests/unit_tests/test_tallies.py index f651b7115e7..d949f845b6b 100644 --- a/tests/unit_tests/test_tallies.py +++ b/tests/unit_tests/test_tallies.py @@ -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