summaryrefslogtreecommitdiff
path: root/tests/run/cimport_from_sys_path.srctree
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/cimport_from_sys_path.srctree')
-rw-r--r--tests/run/cimport_from_sys_path.srctree4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/run/cimport_from_sys_path.srctree b/tests/run/cimport_from_sys_path.srctree
index e6f619d78..e1541d57c 100644
--- a/tests/run/cimport_from_sys_path.srctree
+++ b/tests/run/cimport_from_sys_path.srctree
@@ -32,7 +32,7 @@ static int foo(int a)
######## a.pyx ########
from b.other cimport foo
-print foo(10)
+print(foo(10))
cimport b.other
-print b.other.foo(10)
+print(b.other.foo(10))