Skip to content

Commit

Permalink
[test] fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
sunava committed Dec 5, 2024
1 parent 7834a45 commit 1cdf65c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/test_orm/test_orm.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,9 @@ def test_believe_object(self):

LookAtAction(targets=[Pose([1, -1.78, 0.55])]).resolve().perform()

object_desig = DetectAction(BelieveObject(types=[Milk])).resolve().perform()
object_dict = DetectAction(technique=DetectionTechnique.TYPES,
object_designator_description=BelieveObject(types=[Milk])).resolve().perform()
object_desig = object_dict[0]
TransportAction(object_desig, [Pose([4.8, 3.55, 0.8])], [Arms.LEFT]).resolve().perform()

ParkArmsAction([Arms.BOTH]).resolve().perform()
Expand Down

0 comments on commit 1cdf65c

Please sign in to comment.