Skip to content

Commit 217bb48

Browse files
author
Barton Cline
committed
# BUGFIX: Accommodate new output path (x86 vs. x64) #
1 parent 92a9c80 commit 217bb48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pythonnet/src/embed_tests/pyimport.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ public void SetUp()
1818
gs = PythonEngine.AcquireLock();
1919

2020
//string here = Environment.CurrentDirectory;
21-
// trunk\pythonnet\src\embed_tests\bin\Debug
21+
//trunk\pythonnet\src\embed_tests\bin\x86\DebugWin
2222

2323
/*
2424
* Append the tests directory to sys.path
2525
* using reflection to circumvent the private modifires placed on most Runtime methods.
2626
*/
27-
const string s = @"../../../tests";
27+
const string s = @"../../../../tests";
2828

2929
Type RTClass = typeof(Runtime.Runtime);
3030

0 commit comments

Comments
 (0)