From 5b920e25833852de70edd6b028a9cb232155b137 Mon Sep 17 00:00:00 2001 From: German Date: Thu, 20 Jul 2023 19:14:20 +0200 Subject: [PATCH] Fix the building for MacOS --- tests/archive/test_archive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/archive/test_archive.py b/tests/archive/test_archive.py index 74f7a2ae..23ba18c4 100644 --- a/tests/archive/test_archive.py +++ b/tests/archive/test_archive.py @@ -201,7 +201,7 @@ def test_writehex(tmpdir, hex_archive): def test_write_voxel(tmpdir): filename = str(tmpdir.join("tmp.cdb")) - grid = pv.ImageData(dimensions=(10, 10, 10)) + grid = pv.UniformGrid(dimensions=(10, 10, 10)) pymapdl_reader.save_as_archive(filename, grid) archive = pymapdl_reader.Archive(filename)