From a7ce0733519ea44bffaaedb053bcbdfe28aff41d Mon Sep 17 00:00:00 2001 From: Matt Rogers Date: Tue, 18 Oct 2011 22:25:17 -0500 Subject: [PATCH] Fix the functional tests that wouldn't run before With Ruby 1.8.7, the functional tests were failing due to a recursive require stack. No longer requiring 'backend_controller' and doesn't seem to have any bearing on the running of the tests. --- test/functional/backend_controller_test.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/test/functional/backend_controller_test.rb b/test/functional/backend_controller_test.rb index 26d4fb56..df76e88f 100644 --- a/test/functional/backend_controller_test.rb +++ b/test/functional/backend_controller_test.rb @@ -1,5 +1,4 @@ require File.expand_path(File.dirname(__FILE__) + '/../test_helper') -require 'backend_controller' # Re-raise errors caught by the controller. class BackendController; def rescue_action(e) raise e end; end