aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
diff options
context:
space:
mode:
authorArthur Neves <arthurnn@gmail.com>2015-03-02 11:20:43 -0500
committerArthur Neves <arthurnn@gmail.com>2015-03-02 11:20:47 -0500
commit53333935347a1f1ca6dc57d1f7ddd9663c78d037 (patch)
treef75924d0525bf9adba3e86825d79804adef1beaf /activesupport/test
parent1ba23ceaa68e0d242924564a38b69794f38eb17f (diff)
downloadrails-53333935347a1f1ca6dc57d1f7ddd9663c78d037.tar.gz
rails-53333935347a1f1ca6dc57d1f7ddd9663c78d037.tar.bz2
rails-53333935347a1f1ca6dc57d1f7ddd9663c78d037.zip
Remove not needed .tap
Diffstat (limited to 'activesupport/test')
-rw-r--r--activesupport/test/caching_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/caching_test.rb b/activesupport/test/caching_test.rb
index d8f55f0525..7f5f8feb0d 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| l }
+ assert_match "Caches multi read:\n- hello\n- world", @buffer.string
end
end