From bda48169fe6c6da009d5cb379d11c2a9bfcd9df0 Mon Sep 17 00:00:00 2001 From: tangstad Date: Tue, 2 May 2006 13:21:24 +0000 Subject: [PATCH] Fixed imports to make test run. --- test/system/datasettest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/system/datasettest.py b/test/system/datasettest.py index 4d2032a..2609c95 100644 --- a/test/system/datasettest.py +++ b/test/system/datasettest.py @@ -1,7 +1,7 @@ import unittest import sys -sys.path.append('../../system') -from dataset import * +sys.path.append('../..') +from system.dataset import * from scipy import rand,shape class DatasetTest(unittest.TestCase):