From 066ca50ddff7d0552437ad9909b4ae04e5b0a5d9 Mon Sep 17 00:00:00 2001 From: Daniel Agar Date: Fri, 28 Sep 2018 10:28:07 -0400 Subject: [PATCH] mission test temporarily increase landed timeout 60s -> 120s (#10596) - revert once #10590 is resolved properly --- integrationtests/python_src/px4_it/mavros/mission_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrationtests/python_src/px4_it/mavros/mission_test.py b/integrationtests/python_src/px4_it/mavros/mission_test.py index e08968f1a7..93432d8b86 100755 --- a/integrationtests/python_src/px4_it/mavros/mission_test.py +++ b/integrationtests/python_src/px4_it/mavros/mission_test.py @@ -286,7 +286,7 @@ class MavrosMissionTest(MavrosTestCommon): if (waypoint.command == mavutil.mavlink.MAV_CMD_NAV_VTOL_LAND or waypoint.command == mavutil.mavlink.MAV_CMD_NAV_LAND): self.wait_for_landed_state( - mavutil.mavlink.MAV_LANDED_STATE_ON_GROUND, 60, index) + mavutil.mavlink.MAV_LANDED_STATE_ON_GROUND, 120, index) self.set_arm(False, 5) self.clear_wps(5)