Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
traversaro authored Nov 8, 2024
1 parent 540f650 commit a293483
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions test/test_urdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,15 +195,6 @@ def test_link_multiple_collision(self):
</robot>'''
self.parse_and_compare(xml)

<<<<<<< HEAD
=======
robot = urdf.Robot(name='test', version='1.0')
link = urdf.Link(name='link')
link.collision = urdf.Collision(geometry=urdf.Cylinder(length=1, radius=1))
link.collision = urdf.Collision(geometry=urdf.Cylinder(length=4, radius=0.5))
robot.add_link(link)
self.xml_and_compare(robot, xml)

def test_collision_with_name(self):
xml = '''<?xml version="1.0"?>
<robot name="test" version="1.0">
Expand All @@ -217,7 +208,6 @@ def test_collision_with_name(self):
</robot>'''
self.parse_and_compare(xml)

>>>>>>> 66fcee5 (Support name attribute for collisions (#67))
def test_version_attribute_not_enough_dots(self):
xml = '''<?xml version="1.0"?>
<robot name="test" version="1">
Expand Down

0 comments on commit a293483

Please sign in to comment.