]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Stabilize unit test TestMoveArc by setting higher tolerance for double-values compare
authorazv <azv@opencascade.com>
Thu, 4 Oct 2018 12:00:52 +0000 (15:00 +0300)
committerazv <azv@opencascade.com>
Thu, 4 Oct 2018 12:01:02 +0000 (15:01 +0300)
For some reason, values 60.00000050101973 and 60.0 are not equal with 6 digits?

src/SketchPlugin/Test/TestMoveArc.py

index ad78cc063528c99a5259ed148fe54ae8ee1e2b62..fab42aa61a3a5418f48f362e3c331e3f20f14031 100644 (file)
@@ -51,17 +51,17 @@ class TestMoveArc(unittest.TestCase):
     self.assertEqual(model.dof(self.mySketch), self.myDOF)
 
   def checkPointCoordinates(self, thePoint, theCoordinates):
-    self.assertAlmostEqual(thePoint.x(), theCoordinates[0], 6)
-    self.assertAlmostEqual(thePoint.y(), theCoordinates[1], 6)
+    self.assertAlmostEqual(thePoint.x(), theCoordinates[0], 5)
+    self.assertAlmostEqual(thePoint.y(), theCoordinates[1], 5)
 
   def checkPointOnArc(self, theCoordinates):
     distPC = model.distancePointPoint(self.myArc.center(),  theCoordinates)
     radius = model.distancePointPoint(self.myArc.center(), self.myArc.startPoint())
-    self.assertAlmostEqual(distPC, radius, 6)
+    self.assertAlmostEqual(distPC, radius, 5)
 
   def checkArcRadius(self):
     radius = model.distancePointPoint(self.myArc.center(), self.myArc.startPoint())
-    self.assertAlmostEqual(radius, self.myRadius, 6)
+    self.assertAlmostEqual(radius, self.myRadius, 5)
 
   def fixArcRadius(self):
     self.myRadius = 20.