Skip to content

Commit f2b9c62

Browse files
committed
Revert "BUG: Fix hard-coded radius value for parachute added mass calculation (#889)"
This reverts commit 54b976c.
1 parent 54b976c commit f2b9c62

1 file changed

Lines changed: 0 additions & 15 deletions

File tree

tests/integration/simulation/test_flight.py

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -716,21 +716,6 @@ def invalid_controller_9_params( # pylint: disable=unused-argument
716716
clamp=True,
717717
)
718718

719-
def make_controller_test_environment_access(methods_called):
720-
def _call_env_methods(environment, altitude_asl):
721-
_ = environment.elevation
722-
methods_called["elevation"] = True
723-
_ = environment.wind_velocity_x(altitude_asl)
724-
methods_called["wind_velocity_x"] = True
725-
_ = environment.wind_velocity_y(altitude_asl)
726-
methods_called["wind_velocity_y"] = True
727-
_ = environment.speed_of_sound(altitude_asl)
728-
methods_called["speed_of_sound"] = True
729-
_ = environment.pressure(altitude_asl)
730-
methods_called["pressure"] = True
731-
_ = environment.temperature(altitude_asl)
732-
methods_called["temperature"] = True
733-
734719
def make_controller_test_environment_access(methods_called):
735720
def _call_env_methods(environment, altitude_asl):
736721
_ = environment.elevation

0 commit comments

Comments
 (0)