Skip to content

Commit 5eb8d90

Browse files
author
Michael Koval
committed
Unit test fixes.
1 parent cd33f6d commit 5eb8d90

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

tests/planning/test_TrajoptPlanner.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
PlanToConfigurationTest,
33
PlanToConfigurationStraightLineTest,
44
PlanToEndEffectorPoseTest,
5-
PlanToEndEffectorOffsetTest
65
)
76
from methods.PlanToConfiguration import PlanToConfigurationTestCollisionTest
87
from planning_helpers import BasePlannerTest
@@ -11,12 +10,11 @@
1110
from or_trajopt import TrajoptPlanner
1211

1312
class TrajoptPlannerTest(BasePlannerTest,
14-
PlanToConfigurationTest,
15-
PlanToEndEffectorPoseTest,
16-
PlanToEndEffectorOffsetTest,
17-
TestCase):
13+
PlanToConfigurationTest,
14+
PlanToConfigurationStraightLineTest,
15+
PlanToEndEffectorPoseTest,
16+
TestCase):
1817
planner_factory = TrajoptPlanner
1918

2019
def setUp(self):
2120
super(TrajoptPlannerTest, self).setUp()
22-

tests/tsr/test_tsr.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
# Disabled this test because it currently fails.
77
"""
88
class TsrTest(TestCase):
9-
""" Test cases for prpy.tsr.Tsr. """
109
def test_sample_xyzrpy(self):
1110
# Test zero-intervals.
1211
Bw = [[0., 0.], # X

0 commit comments

Comments
 (0)