From f5f087ef07ea53016e843924436aed11039051e6 Mon Sep 17 00:00:00 2001 From: Patrick Shriwise Date: Fri, 30 Jul 2021 10:41:25 -0500 Subject: [PATCH] Moving import and adding comment to test. --- tests/regression_tests/filter_cellinstance/test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/regression_tests/filter_cellinstance/test.py b/tests/regression_tests/filter_cellinstance/test.py index ccd547f912..3f5fa54b26 100644 --- a/tests/regression_tests/filter_cellinstance/test.py +++ b/tests/regression_tests/filter_cellinstance/test.py @@ -1,11 +1,11 @@ +from numpy.testing import assert_array_almost_equal import openmc import openmc.model import pytest -from numpy.testing import assert_array_almost_equal - from tests.testing_harness import PyAPITestHarness + class CellInstanceFilterTest(PyAPITestHarness): def _compare_results(self): @@ -41,7 +41,7 @@ def model(): cyl1 = openmc.ZCylinder(r=0.7) c1 = openmc.Cell(fill=m1, region=-cyl1) c2 = openmc.Cell(fill=m2, region=+cyl1) - # intermediate universe + # intermediate universe containing only cell 2 u1 = openmc.Universe(cells=[c2]) c3 = openmc.Cell(fill=u1) u2 = openmc.Universe(cells=[c1, c3])