From 6cb4401230e9189169a4754180ec3d6a2b3e20b1 Mon Sep 17 00:00:00 2001 From: Patrick Shriwise Date: Tue, 28 Mar 2023 10:11:14 -0500 Subject: [PATCH] Correcting surface type in cylinder tests --- tests/unit_tests/test_cylindrical_mesh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit_tests/test_cylindrical_mesh.py b/tests/unit_tests/test_cylindrical_mesh.py index caf9333606..4382b49ba5 100644 --- a/tests/unit_tests/test_cylindrical_mesh.py +++ b/tests/unit_tests/test_cylindrical_mesh.py @@ -113,7 +113,7 @@ def void_coincident_geom_model(): model.materials = openmc.Materials() radii = [0.1,1, 5, 50, 100, 150, 250] - cylinders = [openmc.Sphere(r=ri) for ri in radii] + cylinders = [openmc.ZCylinder(r=ri) for ri in radii] cylinders[-1].boundary_type = 'vacuum' regions = openmc.model.subdivide(cylinders)[:-1]