We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1b4be9 commit 91e2130Copy full SHA for 91e2130
1 file changed
tests/unit/simulation/test_flight.py
@@ -162,7 +162,10 @@ def test_get_controller_observed_variables(flight_calisto_air_brakes):
162
working as intended."""
163
obs_vars = flight_calisto_air_brakes.get_controller_observed_variables()
164
assert isinstance(obs_vars, list)
165
- assert len(obs_vars) == 0
+ # The basic air brakes controller mutates the deployment level but does not
166
+ # return observed variables, so every logged entry is None.
167
+ assert len(obs_vars) > 0
168
+ assert all(var is None for var in obs_vars)
169
170
171
def test_initial_stability_margin(flight_calisto_custom_wind):
0 commit comments