diff options
| -rw-r--r-- | test/benchmark.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/benchmark.rb b/test/benchmark.rb index bb9a7b7d..a2179a24 100644 --- a/test/benchmark.rb +++ b/test/benchmark.rb @@ -24,7 +24,7 @@ Benchmark.bm(100) do |x| sheet << row end end - p.serialize("example.xlsx") + p.serialize("example_noautowidth.xlsx") } x.report('axlsx') { @@ -38,7 +38,7 @@ Benchmark.bm(100) do |x| sheet << row end end - p.serialize("example.xlsx") + p.serialize("example_autowidth.xlsx") } x.report('axlsx_shared') { @@ -53,7 +53,7 @@ Benchmark.bm(100) do |x| end end p.use_shared_strings = true - p.serialize("example.xlsx") + p.serialize("example_shared.xlsx") } x.report('axlsx_stream') { |
