aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Agrawal <arunagw@gmail.com>2011-12-16 10:30:20 +0530
committerArun Agrawal <arunagw@gmail.com>2011-12-16 10:30:20 +0530
commitaa39149b2f20963d883130f24679292c3ed39bd0 (patch)
tree851056f4545f5aef2b5baff3746de7ea896fa203
parentdbfc6b8b3a6d406ef335703b2263eca0c5a94846 (diff)
downloadrails-aa39149b2f20963d883130f24679292c3ed39bd0.tar.gz
rails-aa39149b2f20963d883130f24679292c3ed39bd0.tar.bz2
rails-aa39149b2f20963d883130f24679292c3ed39bd0.zip
Warning removed "warning: (...) interpreted as grouped expression"
-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 29fc248acc..f3dc160d7d 100644
--- a/actionpack/test/dispatch/debug_exceptions_test.rb
+++ b/actionpack/test/dispatch/debug_exceptions_test.rb
@@ -152,6 +152,6 @@ class DebugExceptionsTest < ActionDispatch::IntegrationTest
'action_dispatch.backtrace_cleaner' => backtrace_cleaner}
get "/", {}, env
- assert_operator (output.rewind && output.read).lines.count, :>, 10
+ assert_operator((output.rewind && output.read).lines.count, :>, 10)
end
end