Skip to content

Commit

Permalink
Tools: Fix message rate setting in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stephendade authored and peterbarker committed Oct 1, 2024
1 parent 9042e7d commit dad98d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tools/autotest/vehicle_test_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -6413,8 +6413,8 @@ def context_pop(self, process_interaction_allowed=True, hooks_already_removed=Fa
self.remove_message_hook(hook)
for script in dead.installed_scripts:
self.remove_installed_script(script)
for (message_id, interval_us) in dead.overridden_message_rates.items():
self.set_message_interval(message_id, interval_us)
for (message_id, rate_hz) in dead.overridden_message_rates.items():
self.set_message_rate_hz(message_id, rate_hz)
for module in dead.installed_modules:
print("Removing module (%s)" % module)
self.remove_installed_modules(module)
Expand Down

0 comments on commit dad98d9

Please sign in to comment.