test_logreader: test interactive mode + fix typo in AUTO_INTERACTIVE (#31481)

* fix spelling

* test interactive

* remove that

* test taht

* move that
This commit is contained in:
Justin Newberry
2024-02-15 14:24:27 -05:00
committed by GitHub
parent baa77ced19
commit 8aee0d2af2
3 changed files with 19 additions and 6 deletions
+1 -1
View File
@@ -73,7 +73,7 @@ def process(can, lr):
return [d for d in lr if can or d.which() not in ['can', 'sendcan']]
def juggle_route(route_or_segment_name, can, layout, dbc=None):
sr = LogReader(route_or_segment_name, default_mode=ReadMode.AUTO_INTERACIVE)
sr = LogReader(route_or_segment_name, default_mode=ReadMode.AUTO_INTERACTIVE)
all_data = sr.run_across_segments(24, partial(process, can))