Skip to content

Commit

Permalink
testing error if takeoff or landing not found
Browse files Browse the repository at this point in the history
  • Loading branch information
julienthevenoz committed Feb 2, 2024
1 parent a1c4928 commit 2519bc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion systemtests/plotter_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def adjust_arrays(self):



assert (takeoff_index != None) and (landing_index != None), "Plotter : couldn't find drone takeoff or landing"
assert False or (takeoff_index != None) and (landing_index != None), "Plotter : couldn't find drone takeoff or landing"


####get rid of datapoints before takeoff and after landing in bag_times, bag_x, bag_y, bag_y
Expand Down

0 comments on commit 2519bc5

Please sign in to comment.