From 9e4ef5ebf6d4342dfabf42efc9b62877219f3198 Mon Sep 17 00:00:00 2001 From: Alex Eftimiades Date: Wed, 17 Aug 2022 12:15:25 -0400 Subject: [PATCH] fix test --- tests/credibility/test_credibility.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/credibility/test_credibility.py b/tests/credibility/test_credibility.py index 0230d9c..b9d728c 100644 --- a/tests/credibility/test_credibility.py +++ b/tests/credibility/test_credibility.py @@ -9,7 +9,7 @@ def test_value_error(): try: credibility.credible_interval(0, 0, prior=(0, 0)) except ValueError: - pass + return raise Exception("Expected ValueError")