Skip to content

Commit 9963ac1

Browse files
committed
changing allfkine to fkine_all
1 parent 0821e72 commit 9963ac1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/test_ets.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -122,20 +122,20 @@ def test_fkine_traj(self):
122122
nt.assert_array_almost_equal(TT[2].A, ans)
123123
nt.assert_array_almost_equal(TT[3].A, ans)
124124

125-
def test_allfkine(self):
125+
def test_fkine_all(self):
126126
pm = rp.models.DH.Panda()
127127
p = rp.models.ETS.Panda()
128128
q = [1, 2, 3, 4, 5, 6, 7]
129129
p.q = q
130130
pm.q = q
131131

132-
p.allfkine()
133-
r2 = pm.allfkine()
132+
p.fkine_all()
133+
r2 = pm.fkine_all()
134134

135135
for i in range(7):
136136
nt.assert_array_almost_equal(p.ets[i]._fk.A, r2[i].A)
137137

138-
p.allfkine(q)
138+
p.fkine_all(q)
139139
for i in range(7):
140140
nt.assert_array_almost_equal(p.ets[i]._fk.A, r2[i].A)
141141

0 commit comments

Comments
 (0)