diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-03-02 12:04:37 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-03-02 12:04:37 -0300 |
commit | 2675a57fc3071c49ba8276c50f29dde3d427bc7f (patch) | |
tree | 014baf03eefe81cbeec3a4a79013a223f1fb3d95 /activesupport | |
parent | f08c3f737b7e77a5069dbef9c591c89d163b75d2 (diff) | |
download | rails-2675a57fc3071c49ba8276c50f29dde3d427bc7f.tar.gz rails-2675a57fc3071c49ba8276c50f29dde3d427bc7f.tar.bz2 rails-2675a57fc3071c49ba8276c50f29dde3d427bc7f.zip |
Do not output in the console
[Robin Dupret + Rafael Mendonça França]
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/test/caching_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/caching_test.rb b/activesupport/test/caching_test.rb index 095e908907..d8f55f0525 100644 --- a/activesupport/test/caching_test.rb +++ b/activesupport/test/caching_test.rb @@ -1028,7 +1028,7 @@ class CacheStoreLoggerTest < ActiveSupport::TestCase @cache.read_multi('hello', 'world') - assert_match "Caches multi read:\n- hello\n- world", @buffer.string.tap { |l| p l } + assert_match "Caches multi read:\n- hello\n- world", @buffer.string.tap { |l| l } end end |