Browse Source

Move Python unit tests to subdirectory

To make room for integration tests.
Rodolfo Carvalho 8 years ago
parent
commit
ff8356b926
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/modify_yaml_tests.py

+ 1 - 1
test/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