aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/return_const_value_runme.py
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/python/return_const_value_runme.py')
-rw-r--r--Examples/test-suite/python/return_const_value_runme.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Examples/test-suite/python/return_const_value_runme.py b/Examples/test-suite/python/return_const_value_runme.py
index 947102840..ff3bd5f02 100644
--- a/Examples/test-suite/python/return_const_value_runme.py
+++ b/Examples/test-suite/python/return_const_value_runme.py
@@ -3,10 +3,10 @@ import sys
p = return_const_value.Foo_ptr_getPtr()
if (p.getVal() != 17):
- print "Runtime test1 faild. p.getVal()=", p.getVal()
+ print "Runtime test1 failed. p.getVal()=", p.getVal()
sys.exit(1)
p = return_const_value.Foo_ptr_getConstPtr()
if (p.getVal() != 17):
- print "Runtime test2 faild. p.getVal()=", p.getVal()
+ print "Runtime test2 failed. p.getVal()=", p.getVal()
sys.exit(1)