File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -187,7 +187,7 @@ impl RunOpt {
187187 }
188188 }
189189 }
190- benchmark_run. compare_with_previous ( self . output_path . as_ref ( ) ) ?;
190+ benchmark_run. maybe_compare_with_previous ( self . output_path . as_ref ( ) ) ?;
191191 benchmark_run. maybe_write_json ( self . output_path . as_ref ( ) ) ?;
192192 benchmark_run. maybe_print_failures ( ) ;
193193 Ok ( ( ) )
Original file line number Diff line number Diff line change @@ -209,7 +209,7 @@ impl BenchmarkRun {
209209 Ok ( ( ) )
210210 }
211211
212- pub fn compare_with_previous ( & self , maybe_path : Option < impl AsRef < Path > > ) -> Result < ( ) > {
212+ pub fn maybe_compare_with_previous ( & self , maybe_path : Option < impl AsRef < Path > > ) -> Result < ( ) > {
213213 let Some ( path) = maybe_path else {
214214 return Ok ( ( ) ) ;
215215 } ;
You can’t perform that action at this time.
0 commit comments