diff options
author | Yves Senn <yves.senn@gmail.com> | 2015-05-29 11:10:16 +0200 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2015-05-29 11:10:16 +0200 |
commit | 3bbde989329ac752bca4260f79ac62265870723e (patch) | |
tree | bc310340e6cb300edece9de5d390c9ce1367e0cb | |
parent | 6e83a133f7d555948c02abd4dc40abb84790210c (diff) | |
parent | fbe41a2477cdc013808cc6dcadfdab260aa6f241 (diff) | |
download | rails-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.rb | 2 |
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 |