aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorPrathamesh Sonpatki <csonpatki@gmail.com>2013-03-24 01:53:01 +0530
committerPrathamesh Sonpatki <csonpatki@gmail.com>2013-03-24 01:53:01 +0530
commit49760c1ef9afb6290af21357126a88c51c835fa5 (patch)
tree8ac7ddc644c61da8abae42dc83ff5745508454a7 /actionpack/test
parentd45145acdc576e46a1f1719d69bec96b5bf07b0a (diff)
downloadrails-49760c1ef9afb6290af21357126a88c51c835fa5.tar.gz
rails-49760c1ef9afb6290af21357126a88c51c835fa5.tar.bz2
rails-49760c1ef9afb6290af21357126a88c51c835fa5.zip
Reverted code change introduced in d45145acdc576e46a1f1719d69bec96b5bf07b0a
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/abstract/callbacks_test.rb2
-rw-r--r--actionpack/test/abstract/collector_test.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/abstract/callbacks_test.rb b/actionpack/test/abstract/callbacks_test.rb
index 8cba049485..1090af3060 100644
--- a/actionpack/test/abstract/callbacks_test.rb
+++ b/actionpack/test/abstract/callbacks_test.rb
@@ -259,7 +259,7 @@ module AbstractController
end
class TestCallbacksWithArgs < ActiveSupport::TestCase
- test "callbacks still work when invoking process with multiple arguments" do
+ test "callbacks still work when invoking process with multiple args" do
controller = CallbacksWithArgs.new
controller.process(:index, " Howdy!")
assert_equal "Hello world Howdy!", controller.response_body
diff --git a/actionpack/test/abstract/collector_test.rb b/actionpack/test/abstract/collector_test.rb
index 5709ad0378..c14d24905b 100644
--- a/actionpack/test/abstract/collector_test.rb
+++ b/actionpack/test/abstract/collector_test.rb
@@ -42,7 +42,7 @@ module AbstractController
end
end
- test "generated methods call custom with arguments received" do
+ test "generated methods call custom with args received" do
collector = MyCollector.new
collector.html
collector.text(:foo)