From eefe563f08e44c2cfa3b05dba59fcefed53da4c8 Mon Sep 17 00:00:00 2001 From: "Labossiere-Hickman, Travis James" Date: Fri, 17 Jul 2026 10:59:42 -0600 Subject: [PATCH] how did that even happen --- tests/unit_tests/test_filter_mesh.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit_tests/test_filter_mesh.py b/tests/unit_tests/test_filter_mesh.py index 5f68de293..fa16f765e 100644 --- a/tests/unit_tests/test_filter_mesh.py +++ b/tests/unit_tests/test_filter_mesh.py @@ -416,8 +416,8 @@ def test_mesh_filter_dataframe_rectilinear(): def test_axis_labels(mesh_type): if mesh_type == 'regular': mesh = openmc.RegularMesh() - mesh.lower_left = np.asarray([0.0]*3] - mesh.width = np.asarray([0.0]*3] + mesh.lower_left = np.asarray([0.0]*3) + mesh.width = np.asarray([0.0]*3) mesh.dimension = (1, 1, 1) elif mesh_type == 'rectilinear': mesh = openmc.RectilinearMesh()