From 9bcc42b758961531178c6ec1d34619b59503f7a7 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Thu, 23 Feb 2012 21:25:09 +0000 Subject: [PATCH] Fixed PYTHONPATH when running tests --- test_problems/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_problems/SConscript b/test_problems/SConscript index 2c3602216..e48cf59cc 100644 --- a/test_problems/SConscript +++ b/test_problems/SConscript @@ -4,7 +4,7 @@ Import('env','buildTargets','installTargets') localenv = env.Clone() localenv.Append(CPPPATH=['#include', '#src', 'shared']) -os.environ['PYTHONPATH'] = pjoin(os.getcwd(), '..', 'Cantera', 'python') +os.environ['PYTHONPATH'] = pjoin(os.getcwd(), '..', 'interfaces', 'python') os.environ['CANTERA_DATA'] = pjoin(os.getcwd(), '..', 'data', 'inputs') testNames = []