From cae3de7752abb45899faa8a9bc1fc9096c0e369d Mon Sep 17 00:00:00 2001 From: Atsushi Sakai Date: Sun, 14 Jan 2018 16:42:03 -0800 Subject: [PATCH] fix test --- tests/{test_lqr.py => test_lqr_steer_control.py} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename tests/{test_lqr.py => test_lqr_steer_control.py} (56%) diff --git a/tests/test_lqr.py b/tests/test_lqr_steer_control.py similarity index 56% rename from tests/test_lqr.py rename to tests/test_lqr_steer_control.py index 9644b17e..4807afef 100644 --- a/tests/test_lqr.py +++ b/tests/test_lqr_steer_control.py @@ -1,9 +1,9 @@ from unittest import TestCase import sys -sys.path.append("./PathTracking/lqr/") +sys.path.append("./PathTracking/lqr_steer_control/") -from PathTracking.lqr import lqr_tracking as m +from PathTracking.lqr_steer_control import lqr_steer_control as m print(__file__)