From 7b46f959d65d1a5e572934a670557b69e74476d1 Mon Sep 17 00:00:00 2001 From: Atsushi Sakai Date: Sat, 5 May 2018 09:58:44 +0900 Subject: [PATCH] fix test --- tests/test_LQR_planner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_LQR_planner.py b/tests/test_LQR_planner.py index 86f7f1e1..5ece27f8 100644 --- a/tests/test_LQR_planner.py +++ b/tests/test_LQR_planner.py @@ -3,7 +3,7 @@ from unittest import TestCase import sys sys.path.append("./PathPlanning/LQRPlanner") -from PathPlanning.LQRPlanner import LQRPlanner as m +from PathPlanning.LQRPlanner import LQRplanner as m print(__file__)