From a7c7c9b91cbcccd7e26f85b30377a6e9e7d34e12 Mon Sep 17 00:00:00 2001 From: Andrew Davis Date: Mon, 28 Sep 2020 12:23:00 +0100 Subject: [PATCH] Missing closing parenthesis --- tests/unit_tests/test_math.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit_tests/test_math.py b/tests/unit_tests/test_math.py index 179b63e69f..091cc4f4b7 100644 --- a/tests/unit_tests/test_math.py +++ b/tests/unit_tests/test_math.py @@ -223,8 +223,8 @@ def test_normal_dist(): # sample some numbers for i in range(num_samples): # sample the normal distribution from openmc - samples.append(openmc.lib.math.normal_variate(a, b, prn_seed) - prn_seed = prn_seed + 1 + samples.append(openmc.lib.math.normal_variate(a, b, prn_seed)) + prn_seed += 1 stat,p = shaprio(samples) assert stat > 0.97