Adding zero to end of test results

Co-authored-by: Paul Romano <paul.k.romano@gmail.com>
This commit is contained in:
Jonathan Shimwell 2023-02-09 21:19:11 +00:00 committed by GitHub
parent 853ef5ea49
commit eaddf91b65
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)