From 4c0cb1c2c9269c74588da9f114f52ea3707ae8fb Mon Sep 17 00:00:00 2001 From: George Claghorn Date: Tue, 16 Jan 2018 09:20:47 -0500 Subject: Fix constant reference Update the long key handling test so it triggers truncation in the Redis cache store. --- activesupport/test/cache/behaviors/cache_store_behavior.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'activesupport/test') diff --git a/activesupport/test/cache/behaviors/cache_store_behavior.rb b/activesupport/test/cache/behaviors/cache_store_behavior.rb index bdc689b8b4..ac37ab6e61 100644 --- a/activesupport/test/cache/behaviors/cache_store_behavior.rb +++ b/activesupport/test/cache/behaviors/cache_store_behavior.rb @@ -309,8 +309,7 @@ module CacheStoreBehavior end def test_really_long_keys - key = "".dup - 900.times { key << "x" } + key = "x" * 2048 assert @cache.write(key, "bar") assert_equal "bar", @cache.read(key) assert_equal "bar", @cache.fetch(key) -- cgit v1.2.3