summaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/kwargs_feature_runme.py
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/python/kwargs_feature_runme.py')
-rw-r--r--Examples/test-suite/python/kwargs_feature_runme.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Examples/test-suite/python/kwargs_feature_runme.py b/Examples/test-suite/python/kwargs_feature_runme.py
index 5539e211d..7792e2e06 100644
--- a/Examples/test-suite/python/kwargs_feature_runme.py
+++ b/Examples/test-suite/python/kwargs_feature_runme.py
@@ -44,10 +44,10 @@ if BarInt_sbar(b=2) != 3:
if templatedfunction(b=2) != 3:
raise RuntimeError
-if foo(a=1,b=2) != 3:
+if foo_fn(a=1,b=2) != 3:
raise RuntimeError
-if foo(b=2) != 3:
+if foo_fn(b=2) != 3:
raise RuntimeError