diff --git a/selfdrive/test/process_replay/model_replay.py b/selfdrive/test/process_replay/model_replay.py index c6720cc601..ecc245c242 100755 --- a/selfdrive/test/process_replay/model_replay.py +++ b/selfdrive/test/process_replay/model_replay.py @@ -37,8 +37,8 @@ def plot(proposed, master, title, tmp): proposed = list(proposed) master = list(master) fig, ax = plt.subplots() - ax.plot(proposed, label='PROPOSED') ax.plot(master, label='MASTER') + ax.plot(proposed, label='PROPOSED') plt.legend(loc='best') plt.title(title) plt.savefig(f'{tmp}/{title}.png')