diff options
Diffstat (limited to 'Wrappers/Python')
-rwxr-xr-x | Wrappers/Python/test/test_TestData.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Wrappers/Python/test/test_TestData.py b/Wrappers/Python/test/test_TestData.py index cb44a07..3b26612 100755 --- a/Wrappers/Python/test/test_TestData.py +++ b/Wrappers/Python/test/test_TestData.py @@ -1,8 +1,9 @@ -from .testclass import CCPiTestClass + import numpy from ccpi.framework import TestData -import os - +import os, sys +sys.path.append( os.path.dirname( os.path.abspath(__file__) ) ) +from testclass import CCPiTestClass class TestTestData(CCPiTestClass): |