--- trunk/pyvisi/test/python/run_datacollector.py 2007/05/10 08:11:31 1137 +++ trunk/pyvisi/test/python/run_datacollector.py 2007/05/14 04:15:04 1138 @@ -2,7 +2,7 @@ from esys.pyvisi.constant import * import unittest -PYVISI_TEST_MESHES_PATH = "data_meshes/" +PYVISI_TEST_MESHES_PATH = "data_meshes" FILE_2D = "interior_2D.xml" FILE_3D = "interior_3D.xml" @@ -20,7 +20,7 @@ def setFileName(self, file): self.data_collector.setFileName(file_name = \ - PYVISI_TEST_MESHES_PATH + file) + os.path.join(PYVISI_TEST_MESHES_PATH, file)) def setActiveScalar(self, s): self.data_collector.setActiveScalar(scalar = s)