aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorPiotr Sarnacki <drogus@gmail.com>2011-12-16 00:45:20 -0800
committerPiotr Sarnacki <drogus@gmail.com>2011-12-16 00:45:20 -0800
commit8015f906d5f53087b54ceae5f4ec1254f5f1e00f (patch)
tree851056f4545f5aef2b5baff3746de7ea896fa203 /actionpack
parentdbfc6b8b3a6d406ef335703b2263eca0c5a94846 (diff)
parentaa39149b2f20963d883130f24679292c3ed39bd0 (diff)
downloadrails-8015f906d5f53087b54ceae5f4ec1254f5f1e00f.tar.gz
rails-8015f906d5f53087b54ceae5f4ec1254f5f1e00f.tar.bz2
rails-8015f906d5f53087b54ceae5f4ec1254f5f1e00f.zip
Merge pull request #4002 from arunagw/warning_removed_grouped_expression
Warning removed "warning: (...) interpreted as grouped expression"
Diffstat (limited to 'actionpack')
-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