From 9442c695c13b8da547e5d561303847357873d9db Mon Sep 17 00:00:00 2001 From: Sumit Bose Date: Wed, 26 Feb 2014 11:35:24 +0100 Subject: [PATCH] config API: prepend source dir search path for tests Instead of appending the search patch in the source directory should be prepended. Otherwise the test might find files installed in the default paths of the system first. --- src/config/SSSDConfigTest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/SSSDConfigTest.py b/src/config/SSSDConfigTest.py index 7cfbddc..a0c7d31 100755 --- a/src/config/SSSDConfigTest.py +++ b/src/config/SSSDConfigTest.py @@ -12,7 +12,7 @@ import sys srcdir = os.getenv('srcdir') if srcdir: - sys.path.append("./src/config") + sys.path.insert(0, "./src/config") srcdir = srcdir + "/src/config" else: srcdir = "." -- 1.8.3.1