diff --git a/activesupport/test/cache/stores/mem_cache_store_test.rb b/activesupport/test/cache/stores/mem_cache_store_test.rb index 918318f8ae..4c88687354 100644 --- a/activesupport/test/cache/stores/mem_cache_store_test.rb +++ b/activesupport/test/cache/stores/mem_cache_store_test.rb @@ -20,7 +20,11 @@ class MemCacheStoreTest < ActiveSupport::TestCase end class UnavailableDalliServer < Dalli::Protocol::Binary - def alive? + def alive? # before https://github.com/petergoldstein/dalli/pull/863 + false + end + + def ensure_connected! # after https://github.com/petergoldstein/dalli/pull/863 false end end