try to fix test

This commit is contained in:
Atsushi Sakai
2019-02-01 22:12:54 +09:00
parent 6534f05cb0
commit 58b13e4253
2 changed files with 7 additions and 2 deletions

View File

View File

@@ -1,9 +1,14 @@
from unittest import TestCase
import sys
sys.path.append("./PathPlanning/RRTDubins/")
sys.path.append("./PathPlanning/DubinsPath/")
try:
from PathPlanning.RRTDubins import rrt_dubins as m
# from RRTDubins import rrt_dubins as m
except:
raise
from PathPlanning.RRTDubins import rrt_dubins as m
print(__file__)