From c3ada1a8ac5f7de57f478ff653a694253f19027a Mon Sep 17 00:00:00 2001 From: Barton Cline Date: Mon, 8 Apr 2013 09:36:23 +0000 Subject: [PATCH] # BUGFIX: Accommodate new output path (x86 vs. x64) # --- pythonnet/src/embed_tests/pyimport.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pythonnet/src/embed_tests/pyimport.cs b/pythonnet/src/embed_tests/pyimport.cs index ba4ba91..35b81f8 100644 --- a/pythonnet/src/embed_tests/pyimport.cs +++ b/pythonnet/src/embed_tests/pyimport.cs @@ -18,13 +18,13 @@ namespace Python.EmbeddingTest gs = PythonEngine.AcquireLock(); //string here = Environment.CurrentDirectory; - // trunk\pythonnet\src\embed_tests\bin\Debug + //trunk\pythonnet\src\embed_tests\bin\x86\DebugWin /* * Append the tests directory to sys.path * using reflection to circumvent the private modifires placed on most Runtime methods. */ - const string s = @"../../../tests"; + const string s = @"../../../../tests"; Type RTClass = typeof(Runtime.Runtime);