X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FTest%2FTestSketchPointLine.py;h=b37b0f61dd8ed40904ef4567ce0cf431ce7b2909;hb=deae3a86465eb3f9ff111324037faa3e22146ea6;hp=8ff318091753d8dff555bcc7dc0d309612777104;hpb=cbde248859fb0072f6012907391ea90cfc254574;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/Test/TestSketchPointLine.py b/src/SketchPlugin/Test/TestSketchPointLine.py index 8ff318091..b37b0f61d 100644 --- a/src/SketchPlugin/Test/TestSketchPointLine.py +++ b/src/SketchPlugin/Test/TestSketchPointLine.py @@ -46,7 +46,7 @@ assert (len(aSketchReflist.list()) == 0) # aSketchPoint = aDocument.addFeature("SketchPoint") aSketchPoint = aSketchFeature.addFeature("SketchPoint") assert (aSketchPoint.getKind() == "SketchPoint") -coords = geomDataAPI_Point2D(aSketchPoint.attribute("PointCoordinates")) +coords = geomDataAPI_Point2D(aSketchPoint.attribute("PointCoordindates")) assert (coords.x() == 0) assert (coords.y() == 0) assert (not coords.isInitialized()) @@ -58,7 +58,7 @@ aSession.finishOperation() aSketchReflist = aSketchFeature.reflist("Features") assert (aSketchReflist.size() == 1) assert (len(aSketchReflist.list()) == 1) -coords = geomDataAPI_Point2D(aSketchPoint.attribute("PointCoordinates")) +coords = geomDataAPI_Point2D(aSketchPoint.attribute("PointCoordindates")) assert (coords.x() == 10.0) assert (coords.y() == 10.0) #=========================================================================