From 9dc9b2af458f305c251d4572e1c1e1a335b3ea87 Mon Sep 17 00:00:00 2001 From: Olaf Schumann Date: Wed, 29 Sep 2021 17:10:49 +0200 Subject: [PATCH] Update tests/regression_tests/source/test.py Co-authored-by: Paul Romano --- tests/regression_tests/source/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/regression_tests/source/test.py b/tests/regression_tests/source/test.py index 229ac8383b..006358ca7f 100644 --- a/tests/regression_tests/source/test.py +++ b/tests/regression_tests/source/test.py @@ -55,7 +55,7 @@ class SourceTestHarness(PyAPITestHarness): energy1 = openmc.stats.Maxwell(1.2895e6) energy2 = openmc.stats.Watt(0.988e6, 2.249e-6) energy3 = openmc.stats.Tabular(E, p, interpolation='histogram') - energy4 = openmc.stats.Mixture([1,2,3], [energy1, energy2, energy3]) + energy4 = openmc.stats.Mixture([1, 2, 3], [energy1, energy2, energy3]) source1 = openmc.Source(spatial1, angle1, energy1, strength=0.5) source2 = openmc.Source(spatial2, angle2, energy2, strength=0.3)