diff --git a/test/test_meshmode.py b/test/test_meshmode.py index 0c9cad6e07d7dd9fcff8ea44eb79b1179c003d5b..5febf0308759c11b2bb6b7c8596bf623b2329d56 100644 --- a/test/test_meshmode.py +++ b/test/test_meshmode.py @@ -132,7 +132,7 @@ def test_sanity_single_element(ctx_getter, dim, order, visualize=False): from meshmode.mesh import SimplexElementGroup, Mesh mg = SimplexElementGroup( order=order, - vertex_indices=np.arange(dim+1).reshape(1, -1), + vertex_indices=np.arange(dim+1, dtype=np.int32).reshape(1, -1), nodes=mp.warp_and_blend_nodes(dim, order).reshape(dim, 1, -1), dim=dim)