aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2015-05-29 11:10:16 +0200
committerYves Senn <yves.senn@gmail.com>2015-05-29 11:10:16 +0200
commit3bbde989329ac752bca4260f79ac62265870723e (patch)
treebc310340e6cb300edece9de5d390c9ce1367e0cb
parent6e83a133f7d555948c02abd4dc40abb84790210c (diff)
parentfbe41a2477cdc013808cc6dcadfdab260aa6f241 (diff)
downloadrails-3bbde989329ac752bca4260f79ac62265870723e.tar.gz
rails-3bbde989329ac752bca4260f79ac62265870723e.tar.bz2
rails-3bbde989329ac752bca4260f79ac62265870723e.zip
Merge pull request #20354 from arunagw/fix-warning-ambiguous-first-argument
Fix warning about ambiguous first argument
-rw-r--r--actionpack/test/controller/log_subscriber_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/log_subscriber_test.rb b/actionpack/test/controller/log_subscriber_test.rb
index 4ae1b20d43..ccbf336acf 100644
--- a/actionpack/test/controller/log_subscriber_test.rb
+++ b/actionpack/test/controller/log_subscriber_test.rb
@@ -170,7 +170,7 @@ class ACLogSubscriberTest < ActionController::TestCase
def test_process_action_with_view_runtime
get :show
wait
- assert_match /Completed 200 OK in [\d]ms/, logs[1]
+ assert_match(/Completed 200 OK in [\d]ms/, logs[1])
end
def test_append_info_to_payload_is_called_even_with_exception