From eaddf91b6538e58c079d9eaca6f558db344fd644 Mon Sep 17 00:00:00 2001 From: Jonathan Shimwell Date: Thu, 9 Feb 2023 21:19:11 +0000 Subject: [PATCH] Adding zero to end of test results Co-authored-by: Paul Romano --- tests/unit_tests/test_filters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit_tests/test_filters.py b/tests/unit_tests/test_filters.py index d4f0edbf98..0d34bfee3a 100644 --- a/tests/unit_tests/test_filters.py +++ b/tests/unit_tests/test_filters.py @@ -279,7 +279,7 @@ def test_tabular_from_energyfilter(): # combination of different values passed into get_tabular and different # width energy bins results in a doubling value for each p value - assert tab.p.tolist() == [0.02, 0.04, 0.08] + assert tab.p.tolist() == [0.02, 0.04, 0.08, 0.0] # distribution should integrate to unity assert tab.integral() == approx(1.0)