Fixed the view_hook_helper test, it was reading all of the log files into

memory and would throw a NoMemoryError (2GB+ used).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3211 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Eric Davis 2009-12-21 02:24:56 +00:00
parent e1013c44a3
commit 87e83c7285
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ class Redmine::Hook::ManagerTest < ActiveSupport::TestCase
end
def view_hook_helper
@view_hook_helper ||= TestHookHelperView.new(RAILS_ROOT + '/log')
@view_hook_helper ||= TestHookHelperView.new(RAILS_ROOT + '/app/views')
end
end