Skip to content

Commit 7106cd8

Browse files
authored
Merge pull request #420 from Yhg1s/fix-longitudinal-plots
Fix longitudinal plots using the wrong base
2 parents 26995f4 + 57740a0 commit 7106cd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bench_runner/plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ def get_comparison_value(ref, r, base):
298298
runner_results = [r for r in runner_results if r.flags == []]
299299

300300
for r in results:
301-
if r.nickname == runner and r.version == base:
301+
if r.nickname == runner and r.version == base and r.flags == []:
302302
ref = r
303303
break
304304
else:

0 commit comments

Comments
 (0)