aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/dispatch/debug_exceptions_test.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2012-01-20 10:06:45 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2012-01-20 10:06:45 -0800
commit8c2dc4cd043ee2b5b756a737801a62fb7bfc7ba2 (patch)
tree32b363fd2a910c7ab2083a637d08a5b0cd5debde /actionpack/test/dispatch/debug_exceptions_test.rb
parent712b0b99a273c49fb4fad48ae61b4ce252ec0562 (diff)
parent73709f7ffacca74cea2111b42a1ef65a7f8ebc3b (diff)
downloadrails-8c2dc4cd043ee2b5b756a737801a62fb7bfc7ba2.tar.gz
rails-8c2dc4cd043ee2b5b756a737801a62fb7bfc7ba2.tar.bz2
rails-8c2dc4cd043ee2b5b756a737801a62fb7bfc7ba2.zip
Merge pull request #4556 from brainopia/remove_old_cruft
Removed unused assigns from ActionView::Template::Error
Diffstat (limited to 'actionpack/test/dispatch/debug_exceptions_test.rb')
-rw-r--r--actionpack/test/dispatch/debug_exceptions_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/dispatch/debug_exceptions_test.rb b/actionpack/test/dispatch/debug_exceptions_test.rb
index c3a565990e..11c292d61a 100644
--- a/actionpack/test/dispatch/debug_exceptions_test.rb
+++ b/actionpack/test/dispatch/debug_exceptions_test.rb
@@ -34,7 +34,7 @@ class DebugExceptionsTest < ActionDispatch::IntegrationTest
when "/unprocessable_entity"
raise ActionController::InvalidAuthenticityToken
when "/not_found_original_exception"
- raise ActionView::Template::Error.new('template', {}, AbstractController::ActionNotFound.new)
+ raise ActionView::Template::Error.new('template', AbstractController::ActionNotFound.new)
else
raise "puke!"
end