Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
julienthevenoz committed Feb 2, 2024
1 parent bdeb146 commit 0653cba
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions systemtests/test_flights.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,16 +165,14 @@ def translate_plot_and_check(self, testname:str) -> bool :
def test_figure8(self):
self.test_file = "figure8_ideal_traj.csv"
# run test
#self.record_start_and_clean("figure8", 20)
self.record_start_and_clean("figure8", 20)
#create the plot etc
#test_passed = self.translate_plot_and_check("figure8")
test_passed = False
test_passed, "figure8 test failed : deviation larger than epsilon"
test_passed = self.translate_plot_and_check("figure8")
assert test_passed, "figure8 test failed : deviation larger than epsilon"

def test_multi_trajectory(self):
self.test_file = "multi_trajectory_traj0_ideal.csv"
#self.record_start_and_clean("multi_trajectory", 80)
test_passed = True
self.record_start_and_clean("multi_trajectory", 80)
test_passed = self.translate_plot_and_check("multi_trajectory")
assert test_passed, "multitrajectory test failed : deviation larger than epsilon"

Expand Down

0 comments on commit 0653cba

Please sign in to comment.