summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorRodolfo Carvalho <rhcarvalho@gmail.com>2016-11-04 16:50:33 +0100
committerLuke Meyer <lmeyer@redhat.com>2017-04-25 12:13:50 -0400
commitff8356b9266a4a6ec216e3aa31e6ff0408212975 (patch)
treedcc470082999c33410a2809cd9e90c74e8bf99f4 /test
parentd5a3602931c2a3f273d32caa5036fa2adc98eb30 (diff)
downloadopenshift-ff8356b9266a4a6ec216e3aa31e6ff0408212975.tar.gz
openshift-ff8356b9266a4a6ec216e3aa31e6ff0408212975.tar.bz2
openshift-ff8356b9266a4a6ec216e3aa31e6ff0408212975.tar.xz
openshift-ff8356b9266a4a6ec216e3aa31e6ff0408212975.zip
Move Python unit tests to subdirectory
To make room for integration tests.
Diffstat (limited to 'test')
-rw-r--r--test/unit/modify_yaml_tests.py (renamed from test/modify_yaml_tests.py)2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/modify_yaml_tests.py b/test/unit/modify_yaml_tests.py
index 0dc25df82..65b2db44c 100644
--- a/test/modify_yaml_tests.py
+++ b/test/unit/modify_yaml_tests.py
@@ -5,7 +5,7 @@ import os
import sys
import unittest
-sys.path = [os.path.abspath(os.path.dirname(__file__) + "/../library/")] + sys.path
+sys.path = [os.path.abspath(os.path.dirname(__file__) + "/../../library/")] + sys.path
# pylint: disable=import-error
from modify_yaml import set_key # noqa: E402