Skip to content

Commit

Permalink
fix indent in test
Browse files Browse the repository at this point in the history
  • Loading branch information
BogGyver committed Apr 23, 2020
1 parent 597807d commit 256571c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion selfdrive/test/process_replay/compare_logs.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def compare_logs(log1, log2, ignore_fields=[], ignore_msgs=[]):
diff = []
for msg1, msg2 in tqdm(zip(log1, log2)):
if msg1.which() != msg2.which():
print("MSG1: ",msg1,"MSG2: ",msg2)
print("MSG1: ",msg1,"MSG2: ",msg2)
raise Exception("msgs not aligned between logs")

msg1_bytes = remove_ignored_fields(msg1, ignore_fields).as_builder().to_bytes()
Expand Down

0 comments on commit 256571c

Please sign in to comment.