aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/li_factory_runme.py
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/python/li_factory_runme.py')
-rw-r--r--Examples/test-suite/python/li_factory_runme.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Examples/test-suite/python/li_factory_runme.py b/Examples/test-suite/python/li_factory_runme.py
index fb2c81e45..ce0e3caef 100644
--- a/Examples/test-suite/python/li_factory_runme.py
+++ b/Examples/test-suite/python/li_factory_runme.py
@@ -1,11 +1,11 @@
from li_factory import *
-circle = Geometry_create(Geometry.CIRCLE)
+circle = Geometry.create(Geometry.CIRCLE)
r = circle.radius()
if (r != 1.5):
raise RuntimeError
-point = Geometry_create(Geometry.POINT)
+point = Geometry.create(Geometry.POINT)
w = point.width()
if (w != 1.0):
raise RuntimeError