diff options
author | Joshua Peek <josh@joshpeek.com> | 2009-05-17 11:09:14 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2009-05-17 12:24:59 -0500 |
commit | c3319504f066c9362b4b30e1e15bbd1cadde8e25 (patch) | |
tree | 2576c06099ec7be06e08e695e4d8a1086ccdfe48 /actionpack/lib/action_controller/testing | |
parent | 98eaa2c6834e418959f2a1a18421e4811167e03b (diff) | |
download | rails-c3319504f066c9362b4b30e1e15bbd1cadde8e25.tar.gz rails-c3319504f066c9362b4b30e1e15bbd1cadde8e25.tar.bz2 rails-c3319504f066c9362b4b30e1e15bbd1cadde8e25.zip |
Rescue hack was supposed to be removed. Some how it crept back in.
Diffstat (limited to 'actionpack/lib/action_controller/testing')
-rw-r--r-- | actionpack/lib/action_controller/testing/process.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/actionpack/lib/action_controller/testing/process.rb b/actionpack/lib/action_controller/testing/process.rb index 8f4358c33e..8831ff57e2 100644 --- a/actionpack/lib/action_controller/testing/process.rb +++ b/actionpack/lib/action_controller/testing/process.rb @@ -132,9 +132,6 @@ module ActionController #:nodoc: @request.session["flash"] = ActionController::Flash::FlashHash.new.update(flash) if flash build_request_uri(action, parameters) - @request.env["action_controller.rescue.request"] = @request - @request.env["action_controller.rescue.response"] = @response - Base.class_eval { include ProcessWithTest } unless Base < ProcessWithTest env = @request.env |