Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ufechner7 committed Mar 29, 2024
1 parent aeeeac1 commit 3ab3309
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ end
sys_state = SysState(kps4)
on_new_systate(ssc, sys_state)
v_set = calc_v_set(ssc)
@test v_set > 0.0 && v_set < 0.1
@test v_set >= 0.0 && v_set < 0.1
u_s = calc_steering(ssc)
println(u_s)
end
Expand All @@ -442,7 +442,7 @@ end
KiteControllers.set_v_wind_gnd(fpca, 3.7)
KiteControllers.set_v_wind_gnd(fpca, 3.6)
KiteControllers.set_v_wind_gnd(fpca, 8.3)
@test fpca._elevation_offset_p2 == 4.0
@test fpca._elevation_offset_p2 == 11.0
phi = deg2rad(0)
beta = deg2rad(30)
KiteControllers.set_azimuth_elevation(fpca, phi, beta)
Expand Down

0 comments on commit 3ab3309

Please sign in to comment.