Skip to content

Commit 2dc2019

Browse files
committed
Remove unnecessary deprecation silencing in cache_store_compression_behavior.rb
1 parent c48aab1 commit 2dc2019

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

activesupport/test/cache/behaviors/cache_store_compression_behavior.rb

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,7 @@ def self.inflate(compressed)
125125
LARGE_OBJECT = { data: LARGE_STRING }
126126

127127
def with_format(format_version, &block)
128-
ActiveSupport.deprecator.silence do
129-
ActiveSupport::Cache.with(format_version: format_version, &block)
130-
end
128+
ActiveSupport::Cache.with(format_version: format_version, &block)
131129
end
132130

133131
def assert_compress(value, **options)

0 commit comments

Comments
 (0)