From 6f89e9d5511caa230da9c8a6b513c026dd9f3591 Mon Sep 17 00:00:00 2001 From: Daniel Agar Date: Mon, 17 Apr 2017 09:45:43 -0400 Subject: [PATCH] integrationtests mavros fix type --- integrationtests/python_src/px4_it/mavros/mission_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integrationtests/python_src/px4_it/mavros/mission_test.py b/integrationtests/python_src/px4_it/mavros/mission_test.py index 10875df1fd..3de574f634 100755 --- a/integrationtests/python_src/px4_it/mavros/mission_test.py +++ b/integrationtests/python_src/px4_it/mavros/mission_test.py @@ -314,12 +314,12 @@ class MavrosMissionTest(unittest.TestCase): with open(mission_file, 'r') as f: mission_ext = os.path.splitext(mission_file)[1] if mission_ext == '.mission': - rospy.loginfo("new style mission fiel detected") + rospy.loginfo("new style mission file detected") for waypoint in read_new_mission(f): wps.append(waypoint) rospy.logdebug(waypoint) elif mission_ext == '.txt': - rospy.loginfo("old style mission fiel detected") + rospy.loginfo("old style mission file detected") mission = QGroundControlWP() for waypoint in mission.read(f): wps.append(waypoint)