summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/modules/python/python-test.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sca-cpp/trunk/modules/python/python-test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sca-cpp/trunk/modules/python/python-test.cpp b/sca-cpp/trunk/modules/python/python-test.cpp
index c4ffcee57e..41889e6d0e 100644
--- a/sca-cpp/trunk/modules/python/python-test.cpp
+++ b/sca-cpp/trunk/modules/python/python-test.cpp
@@ -40,7 +40,7 @@ bool testEvalExpr() {
PythonRuntime py;
istringstream is(testPythonAdd);
- failable<PyObject*> script = readScript("script", is);
+ failable<PyObject*> script = readScript("script", "script.py", is);
assert(hasContent(script));
const value exp = mklist<value>("add", 2, 3);