aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/dispatch
diff options
context:
space:
mode:
authorbrainopia <brainopia@evilmartians.com>2012-01-20 20:13:29 +0400
committerbrainopia <brainopia@evilmartians.com>2012-01-20 20:13:29 +0400
commit73709f7ffacca74cea2111b42a1ef65a7f8ebc3b (patch)
tree9ca0c9deb2ea11e913e77ba446f676475f913696 /actionpack/test/dispatch
parenta2d0b9945740ebd6a21debf2449e6522977d510c (diff)
downloadrails-73709f7ffacca74cea2111b42a1ef65a7f8ebc3b.tar.gz
rails-73709f7ffacca74cea2111b42a1ef65a7f8ebc3b.tar.bz2
rails-73709f7ffacca74cea2111b42a1ef65a7f8ebc3b.zip
Removed unused assigns from ActionView::Template::Error
They existed since initial rails commit by DHH but lost use a long time ago
Diffstat (limited to 'actionpack/test/dispatch')
-rw-r--r--actionpack/test/dispatch/debug_exceptions_test.rb2
-rw-r--r--actionpack/test/dispatch/show_exceptions_test.rb2
2 files changed, 2 insertions, 2 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
diff --git a/actionpack/test/dispatch/show_exceptions_test.rb b/actionpack/test/dispatch/show_exceptions_test.rb
index 4a6d5ddbf7..45f8fc11b3 100644
--- a/actionpack/test/dispatch/show_exceptions_test.rb
+++ b/actionpack/test/dispatch/show_exceptions_test.rb
@@ -11,7 +11,7 @@ class ShowExceptionsTest < ActionDispatch::IntegrationTest
when "/method_not_allowed"
raise ActionController::MethodNotAllowed
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