1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fewer runs by default

This commit is contained in:
Jeremy Kemper 2009-05-21 19:44:02 -07:00
parent 68a207ccf6
commit e0e124757a

View file

@ -9,7 +9,7 @@ class BaseController < ActionController::Base
end
end
n = (ENV['N'] || 10000).to_i
n = (ENV['N'] || 1000).to_i
input = StringIO.new('')
def call_index(controller, input, n)