File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ class BenchmarkDriver(object):
200
200
with open (log_file , 'w' ) as f :
201
201
f .write (output )
202
202
203
- RESULT = '{:>3} {:<25 } {:>7} {:>7} {:>6} {:>10} {:>6} {:>7} {:>10}'
203
+ RESULT = '{:>3} {:<40 } {:>7} {:>7} {:>6} {:>10} {:>6} {:>7} {:>10}'
204
204
205
205
def run_and_log (self , csv_console = True ):
206
206
"""Run benchmarks and continuously log results to the console.
Original file line number Diff line number Diff line change @@ -366,10 +366,10 @@ def mock_run(test):
366
366
self .assertEqual (log , header + csv_log )
367
367
self .assertEqual (
368
368
out .getvalue (),
369
- ' # TEST SAMPLES MIN(μs) Q1 (μs)' +
370
- ' MEDIAN(μs) Q3(μs) MAX(μs) MAX_RSS(B)\n ' +
371
- ' 3 b1 5 101 102 ' +
372
- ' 103 104 105 888\n ' +
369
+ ' # TEST SAMPLES MIN(μs)' +
370
+ ' Q1(μs) MEDIAN(μs) Q3(μs) MAX(μs) MAX_RSS(B)\n ' +
371
+ ' 3 b1 5 101 ' +
372
+ ' 102 103 104 105 888\n ' +
373
373
'\n ' +
374
374
'Total performance tests executed: 1\n ' )
375
375
You can’t perform that action at this time.
0 commit comments