Mod/Test/BaseTests.py source typo

Changed `def testRoation(self):` to  ` def testRotation(self):`
Please review.
This commit is contained in:
luz.paz
2018-01-23 04:10:13 -05:00
committed by wmayer
parent 45a1d6c906
commit 3d2856e892

View File

@@ -178,7 +178,7 @@ class ParameterTestCase(unittest.TestCase):
self.failUnless(m2==m3*m4 ,"Wrong multiplication order")
self.failUnless(not m2==m4*m3,"Wrong multiplication order")
def testRoation(self):
def testRotation(self):
r=FreeCAD.Rotation(1,0,0,0) # 180 deg around (1,0,0)
self.assertEqual(r.Axis, FreeCAD.Vector(1,0,0))
self.assertAlmostEqual(math.fabs(r.Angle), math.fabs(math.pi))