summaryrefslogtreecommitdiff
path: root/tests/test_lookup.py
diff options
context:
space:
mode:
authorJuergen Bocklage-Ryannel <juergen.bocklage-ryannel@pelagicore.com>2017-01-30 10:54:46 +0100
committerJuergen Bocklage-Ryannel <juergen.bocklage-ryannel@pelagicore.com>2017-01-30 10:54:46 +0100
commitdae03de21ca4c86552718015b4572714817ff59f (patch)
treee2fb0c2934e947c9acdbfc36005d35d38b730956 /tests/test_lookup.py
parentcae6c38ddb7a21ea0b93caa675caa14a5e943479 (diff)
downloadqtivi-qface-dae03de21ca4c86552718015b4572714817ff59f.tar.gz
Ensured we always use the path module and not the pathlib module from Python3. Also when pathlib is now a standard module, the path module has more convenience operations.
Diffstat (limited to 'tests/test_lookup.py')
-rw-r--r--tests/test_lookup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_lookup.py b/tests/test_lookup.py
index 7ff7aa5..af29ee9 100644
--- a/tests/test_lookup.py
+++ b/tests/test_lookup.py
@@ -1,6 +1,6 @@
import logging
import logging.config
-from pathlib import Path
+from path import Path
from qface.generator import FileSystem
@@ -10,7 +10,7 @@ logging.basicConfig()
log = logging.getLogger(__name__)
inputPath = Path('tests/in')
-log.debug('input path folder: {0}'.format(inputPath.absolute()))
+log.debug('input path folder: {0}'.format(inputPath.abspath()))
def load_tuner():