Skip to content

Commit 58b13e4

Browse files
committed
try to fix test
1 parent 6534f05 commit 58b13e4

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

PathPlanning/RRTDubins/__init__.py

Whitespace-only changes.

tests/test_rrt_dubins.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
from unittest import TestCase
2-
32
import sys
43
sys.path.append("./PathPlanning/RRTDubins/")
4+
sys.path.append("./PathPlanning/DubinsPath/")
5+
6+
try:
7+
from PathPlanning.RRTDubins import rrt_dubins as m
8+
# from RRTDubins import rrt_dubins as m
9+
except:
10+
raise
511

6-
from PathPlanning.RRTDubins import rrt_dubins as m
712

813
print(__file__)
914

0 commit comments

Comments
 (0)