summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorjvoisin2012-12-08 02:02:25 +0100
committerjvoisin2012-12-13 14:24:01 +0100
commitcbf8a2a65928694202e19b6bcf56ec84bcbf613c (patch)
treee106475b0d5c003505336b5ae6416e4508bb768b /test
parent67d5c1fa6b9ab6e1e7328ee57b15d8e46526d72a (diff)
Reorganize source tree and files installation location, cleanup setup.py (Closes: #689409)
Diffstat (limited to 'test')
-rw-r--r--test/clitest.py2
-rw-r--r--test/libtest.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/clitest.py b/test/clitest.py
index 8fc4072..a818b5d 100644
--- a/test/clitest.py
+++ b/test/clitest.py
@@ -10,7 +10,7 @@ import subprocess
10import sys 10import sys
11 11
12sys.path.append('..') 12sys.path.append('..')
13from lib import mat 13from MAT import mat
14import test 14import test
15 15
16 16
diff --git a/test/libtest.py b/test/libtest.py
index c44387d..9a833f1 100644
--- a/test/libtest.py
+++ b/test/libtest.py
@@ -9,7 +9,7 @@ import unittest
9import test 9import test
10import sys 10import sys
11sys.path.append('..') 11sys.path.append('..')
12from lib import mat 12from MAT import mat
13 13
14 14
15class TestRemovelib(test.MATTest): 15class TestRemovelib(test.MATTest):