From fd52c18488c3b01be3f052d90c99b14ac8cad916 Mon Sep 17 00:00:00 2001 From: Philip Eisenlohr Date: Thu, 24 Feb 2022 18:35:48 -0500 Subject: [PATCH] remove debug print statements in tests --- python/tests/test_VTK.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/python/tests/test_VTK.py b/python/tests/test_VTK.py index 0681cffe3..02f09d391 100644 --- a/python/tests/test_VTK.py +++ b/python/tests/test_VTK.py @@ -45,7 +45,6 @@ class TestVTK: with open(tmp_path/'imageData.vtk','w') as f: f.write(string) vtk = VTK.load(tmp_path/'imageData.vtk','VTK_imageData') - print(vtk) assert (string == vtr.as_ASCII() == vtk.as_ASCII()) def test_rectilinearGrid(self,tmp_path): @@ -57,7 +56,6 @@ class TestVTK: with open(tmp_path/'rectilinearGrid.vtk','w') as f: f.write(string) vtk = VTK.load(tmp_path/'rectilinearGrid.vtk','VTK_rectilinearGrid') - print(vtk) assert (string == vtr.as_ASCII() == vtk.as_ASCII()) def test_polyData(self,tmp_path): @@ -69,7 +67,6 @@ class TestVTK: with open(tmp_path/'polyData.vtk','w') as f: f.write(string) vtk = VTK.load(tmp_path/'polyData.vtk','polyData') - print(vtk) assert(string == vtp.as_ASCII() == vtk.as_ASCII()) @pytest.mark.parametrize('cell_type,n',[ @@ -89,7 +86,6 @@ class TestVTK: with open(tmp_path/'unstructuredGrid.vtk','w') as f: f.write(string) vtk = VTK.load(tmp_path/'unstructuredGrid.vtk','unstructuredgrid') - print(vtk) assert(string == vtu.as_ASCII() == vtk.as_ASCII())