Skip to content

Commit b137bba

Browse files
author
Gilwoo Lee
committed
Changed test names, fixed spacing.
1 parent 28edd45 commit b137bba

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

tests/planning/methods/PlanToEndEffectorOffset.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def test_PlanToEndEffectorOffset_StartInSelfCollision_Throws(self):
9090
self.planner.PlanToEndEffectorOffset(
9191
self.robot, direction=self.direction, distance=self.distance)
9292

93-
def test_PlanToEndEffectorOffset_GoalInCollision_Throws(self):
93+
def test_PlanToEndEffectorOffset_GoalInEnvCollision_Throws(self):
9494
# Setup
9595
with self.env:
9696
self.robot.SetActiveDOFValues(self.config_infeasible_env_movement)
@@ -100,7 +100,7 @@ def test_PlanToEndEffectorOffset_GoalInCollision_Throws(self):
100100
self.planner.PlanToEndEffectorOffset(
101101
self.robot, direction=self.direction, distance=self.distance)
102102

103-
def test_PlanToEndEffectorOffset_GoalInCollision_Throws2(self):
103+
def test_PlanToEndEffectorOffset_GoalInSelfCollision_Throws(self):
104104
# Setup
105105
with self.env:
106106
self.robot.SetActiveDOFValues(self.config_infeasible_self_movement)

tests/planning/test_TrajoptPlanner.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
from or_trajopt import TrajoptPlanner
1212

1313
class TrajoptPlannerTest(BasePlannerTest,
14-
PlanToConfigurationTest,
15-
PlanToEndEffectorPoseTest,
16-
PlanToEndEffectorOffsetTest,
17-
TestCase):
14+
PlanToConfigurationTest,
15+
PlanToEndEffectorPoseTest,
16+
PlanToEndEffectorOffsetTest,
17+
TestCase):
1818
planner_factory = TrajoptPlanner
1919

2020
def setUp(self):

0 commit comments

Comments
 (0)