Skip to content

Commit 6cb4401

Browse files
committed
Correcting surface type in cylinder tests
1 parent 86e9a4b commit 6cb4401

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit_tests/test_cylindrical_mesh.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def void_coincident_geom_model():
113113

114114
model.materials = openmc.Materials()
115115
radii = [0.1,1, 5, 50, 100, 150, 250]
116-
cylinders = [openmc.Sphere(r=ri) for ri in radii]
116+
cylinders = [openmc.ZCylinder(r=ri) for ri in radii]
117117
cylinders[-1].boundary_type = 'vacuum'
118118

119119
regions = openmc.model.subdivide(cylinders)[:-1]

0 commit comments

Comments
 (0)