From 450a343e4b60fc1b7a8f901b1198e767058011d9 Mon Sep 17 00:00:00 2001 From: Stephen Merrony Date: Wed, 27 Jun 2018 11:26:51 +0100 Subject: [PATCH] Fix typo in test --- autopilot_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autopilot_test.go b/autopilot_test.go index a783850..f54c23e 100644 --- a/autopilot_test.go +++ b/autopilot_test.go @@ -101,7 +101,7 @@ func TestFlyToYawAndHeightConcurrently(t *testing.T) { drone.TakeOff() time.Sleep(5 * time.Second) - hDoneC, err := drone.FlyToHeight(40) + hDoneC, err := drone.FlyToHeight(4) if err != nil { log.Fatalf("FlyToHeight failed with error %v", err) }