aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2011-09-03 20:17:07 -0700
committerSantiago Pastorino <santiago@wyeworks.com>2011-09-03 20:17:07 -0700
commit60b8bfa653713bae8bdca266d52f9d00d4acf189 (patch)
treefd7474d989ca79c655766109002e66b209529717 /activesupport/lib
parent0a38e2a5ce2eaf7393958721edbfcf2a7fe87334 (diff)
parenta6c60222c580e4002152b1ac1857673038b1fd42 (diff)
downloadrails-60b8bfa653713bae8bdca266d52f9d00d4acf189.tar.gz
rails-60b8bfa653713bae8bdca266d52f9d00d4acf189.tar.bz2
rails-60b8bfa653713bae8bdca266d52f9d00d4acf189.zip
Merge pull request #2844 from arunagw/warnings_removed_master
Warnings removed from master
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/log_subscriber/test_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/log_subscriber/test_helper.rb b/activesupport/lib/active_support/log_subscriber/test_helper.rb
index 3e54134c5c..dcfcf0b63c 100644
--- a/activesupport/lib/active_support/log_subscriber/test_helper.rb
+++ b/activesupport/lib/active_support/log_subscriber/test_helper.rb
@@ -18,8 +18,8 @@ module ActiveSupport
# Developer.all
# wait
# assert_equal 1, @logger.logged(:debug).size
- # assert_match /Developer Load/, @logger.logged(:debug).last
- # assert_match /SELECT \* FROM "developers"/, @logger.logged(:debug).last
+ # assert_match(/Developer Load/, @logger.logged(:debug).last)
+ # assert_match(/SELECT \* FROM "developers"/, @logger.logged(:debug).last)
# end
# end
#