summaryrefslogtreecommitdiffhomepage
path: root/test/profile.rb
diff options
context:
space:
mode:
authorGeremia Taglialatela <[email protected]>2023-04-13 17:16:49 +0200
committerGeremia Taglialatela <[email protected]>2023-05-03 16:05:38 +0200
commit6e215fa74d047a2d281a5b1caa891579198f7313 (patch)
treedb4b7e6e6089475c01e4880744202d604e2e8902 /test/profile.rb
parentf2e55f053bac8bc2a97f2208237608e20eb1eeaa (diff)
downloadcaxlsx-6e215fa74d047a2d281a5b1caa891579198f7313.tar.gz
caxlsx-6e215fa74d047a2d281a5b1caa891579198f7313.zip
Fix non-production Style/NumericLiterals offenses
Diffstat (limited to 'test/profile.rb')
-rwxr-xr-xtest/profile.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/profile.rb b/test/profile.rb
index a81c813b..7b671831 100755
--- a/test/profile.rb
+++ b/test/profile.rb
@@ -13,7 +13,7 @@ input = (32..126).to_a.pack('U*').chars.to_a
profile = RubyProf.profile do
p = Axlsx::Package.new
p.workbook.add_worksheet do |sheet|
- 10000.times do
+ 10_000.times do
sheet << row
end
end