# BUGFIX: Accommodate new output path (x86 vs. x64) #

This commit is contained in:
Barton Cline 2013-04-08 09:36:23 +00:00
Родитель c457632171
Коммит c3ada1a8ac
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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);