From 13c83a1c005eab8e2ea38cdce46c2f798cee59d1 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Thu, 4 Aug 2022 08:54:20 -0500 Subject: [PATCH] Bump up number of samples in test_combine_distributions --- tests/unit_tests/test_stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit_tests/test_stats.py b/tests/unit_tests/test_stats.py index 1cfcf00c3..b8bb94f37 100644 --- a/tests/unit_tests/test_stats.py +++ b/tests/unit_tests/test_stats.py @@ -436,5 +436,5 @@ def test_combine_distributions(): # Sample the combined distribution and make sure the sample mean is within # uncertainty of the expected value - samples = combined.sample(10) + samples = combined.sample(1000) assert_sample_mean(samples, 0.25)