Salome HOME
Fix for the issue #1928
[modules/shaper.git] / src / PythonAPI / Test / TestSketcherSetEqual.py
index 65a7e3caebb48fc4cd15d65ad9106845bd6f62e5..9ffdb877454ca9cff4af5aa104cf8c1e38881412 100644 (file)
@@ -4,7 +4,7 @@ import math
 import TestSketcher
 from TestSketcher import SketcherTestCase
 
-class SketcherSetEqual(SketcherTestCase):   
+class SketcherSetEqual(SketcherTestCase):
     def test_length_equality(self):
         # Set the constraint
         l1 = self.sketch.addLine(0, 0, 0, 1)
@@ -14,15 +14,15 @@ class SketcherSetEqual(SketcherTestCase):
         model.do()
         # Check the result
         length_1 = math.sqrt(
-            math.pow((l1.endPointData().x() - l1.startPointData().x()), 2) + 
-            math.pow((l1.endPointData().y() - l1.startPointData().y()), 2)
+            math.pow((l1.endPoint().x() - l1.startPoint().x()), 2) +
+            math.pow((l1.endPoint().y() - l1.startPoint().y()), 2)
             )
         length_2 = math.sqrt(
-            math.pow((l1.endPointData().x() - l1.startPointData().x()), 2) + 
-            math.pow((l2.endPointData().y() - l2.startPointData().y()), 2)
+            math.pow((l2.endPoint().x() - l2.startPoint().x()), 2) +
+            math.pow((l2.endPoint().y() - l2.startPoint().y()), 2)
             )
         self.assertAlmostEqual(length_1, length_2, delta=TestSketcher.DELTA)
-        
+
     def test_radius_equality(self):
         # Set the constraint
         circle_1 = self.sketch.addCircle(0, 0, 10.0)
@@ -32,11 +32,11 @@ class SketcherSetEqual(SketcherTestCase):
         model.do()
         # Check the result
         self.assertAlmostEqual(
-            circle_1.radiusData().value(), 
-            circle_2.radiusData().value(), 
+            circle_1.radiusData().value(),
+            circle_2.radiusData().value(),
             delta=TestSketcher.DELTA
             )
-        
+
 if __name__ == "__main__":
     suite = unittest.TestLoader().loadTestsFromTestCase(SketcherSetEqual)
-    unittest.TextTestRunner(verbosity=2).run(suite)
\ No newline at end of file
+    unittest.TextTestRunner(verbosity=2).run(suite)