aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/application/rack
diff options
context:
space:
mode:
authorSebastian Martinez <sebastian@wyeworks.com>2011-05-23 21:45:00 -0300
committerSebastian Martinez <sebastian@wyeworks.com>2011-05-23 21:45:00 -0300
commit130c9b71aa7e52cfac011c0c4ee7d24a1b2dcb4e (patch)
tree5b2e05bb1c1c6d3927aaec897d407bb52e7e8d52 /railties/test/application/rack
parent8e7590c72c088e89d73d318d58e5bc3c058dea8f (diff)
downloadrails-130c9b71aa7e52cfac011c0c4ee7d24a1b2dcb4e.tar.gz
rails-130c9b71aa7e52cfac011c0c4ee7d24a1b2dcb4e.tar.bz2
rails-130c9b71aa7e52cfac011c0c4ee7d24a1b2dcb4e.zip
Parenthesize arguments when the first one is a Regexp literal.
This fixes 'warning: ambiguous first argument; put parentheses or even spaces'.
Diffstat (limited to 'railties/test/application/rack')
-rw-r--r--railties/test/application/rack/logger_test.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/test/application/rack/logger_test.rb b/railties/test/application/rack/logger_test.rb
index a29244357c..715af5c642 100644
--- a/railties/test/application/rack/logger_test.rb
+++ b/railties/test/application/rack/logger_test.rb
@@ -21,19 +21,19 @@ module ApplicationTests
test "logger logs proper HTTP verb and path" do
get "/blah"
wait
- assert_match /^Started GET "\/blah"/, logs[0]
+ assert_match(/^Started GET "\/blah"/, logs[0])
end
test "logger logs HTTP verb override" do
post "/", {:_method => 'put'}
wait
- assert_match /^Started PUT "\/"/, logs[0]
+ assert_match(/^Started PUT "\/"/, logs[0])
end
test "logger logs HEAD requests" do
post "/", {:_method => 'head'}
wait
- assert_match /^Started HEAD "\/"/, logs[0]
+ assert_match(/^Started HEAD "\/"/, logs[0])
end
end
end