fixed typo

This commit is contained in:
Philip Eisenlohr 2020-11-16 10:34:49 -05:00
parent de20e6b35d
commit fa25a13264
1 changed files with 1 additions and 1 deletions

View File

@ -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)