Salome HOME
Issue #803: Put all the python modules in the same python package newgeom
[modules/shaper.git] / src / SketchPlugin / Test / TestConstraintParallel.py
index 965193b4e4ac188a5fdd787314204390ee8017e3..2dd6ce202acedd6c1608ce9ad27df7b984705d0f 100644 (file)
@@ -29,8 +29,6 @@ origin = geomDataAPI_Point(aSketchFeature.attribute("Origin"))
 origin.setValue(0, 0, 0)
 dirx = geomDataAPI_Dir(aSketchFeature.attribute("DirX"))
 dirx.setValue(1, 0, 0)
-diry = geomDataAPI_Dir(aSketchFeature.attribute("DirY"))
-diry.setValue(0, 1, 0)
 norm = geomDataAPI_Dir(aSketchFeature.attribute("Norm"))
 norm.setValue(0, 0, 1)
 aSession.finishOperation()
@@ -110,3 +108,6 @@ assert (aLineBEndPointPrev != aLineBEndPointNew)
 #=========================================================================
 # End of test
 #=========================================================================
+
+from salome.shaper import model
+assert(model.checkPythonDump())