fix tutils imports

This commit is contained in:
Thomas Kriechbaumer
2015-08-01 14:49:15 +02:00
parent a837230320
commit 0be84fd6b9
13 changed files with 19 additions and 25 deletions

View File

@@ -130,7 +130,7 @@ class Data(object):
This function will raise ValueError if the path does not exist.
"""
fullpath = os.path.join(self.dirname, path)
fullpath = os.path.join(self.dirname, '../test/', path)
if not os.path.exists(fullpath):
raise ValueError("dataPath: %s does not exist." % fullpath)
return fullpath