aboutsummaryrefslogtreecommitdiffstats
path: root/netlib
diff options
context:
space:
mode:
Diffstat (limited to 'netlib')
-rw-r--r--netlib/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/netlib/utils.py b/netlib/utils.py
index 39354605..35ea0ec7 100644
--- a/netlib/utils.py
+++ b/netlib/utils.py
@@ -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