Skip to content

Commit cd21c33

Browse files
committed
tests passing
1 parent 0b94474 commit cd21c33

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_Link.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ def test_A(self):
7070
np.array([[1, 0, 0, 0], [0, 1, 0, 0], [0, 0, 1, np.pi], [0, 0, 0, 1]])
7171
)
7272

73-
nt.assert_array_almost_equal(l0.T(np.pi).A, T0.A)
74-
nt.assert_array_almost_equal(l1.T(np.pi).A, T1.A)
75-
nt.assert_array_almost_equal(l2.T(np.pi).A, T0.A)
73+
nt.assert_array_almost_equal(l0.A(np.pi).A, T0.A)
74+
nt.assert_array_almost_equal(l1.A(np.pi).A, T1.A)
75+
nt.assert_array_almost_equal(l2.A(np.pi).A, T0.A)
7676

7777
def test_friction(self):
7878
l0 = rp.RevoluteMDH(d=2, Tc=[2, -1], B=3, G=2)

0 commit comments

Comments
 (0)