From fa25a1326488eac57664fb27c6b6ca19a8f2dc9f Mon Sep 17 00:00:00 2001 From: Philip Eisenlohr Date: Mon, 16 Nov 2020 10:34:49 -0500 Subject: [PATCH] fixed typo --- python/tests/test_VTK.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/tests/test_VTK.py b/python/tests/test_VTK.py index 53fbaa2f4..48dce4707 100644 --- a/python/tests/test_VTK.py +++ b/python/tests/test_VTK.py @@ -87,7 +87,7 @@ class TestVTK: def test_compress(self,tmp_path): points = np.random.rand(102,3) v = VTK.from_poly_data(points) - fname_c = tmp_path/'compreesed.vtp' + fname_c = tmp_path/'compressed.vtp' fname_p = tmp_path/'plain.vtp' v.save(fname_c,parallel=False,compress=False) v.save(fname_p,parallel=False,compress=True)