From ff22014a03e0161c9034399ee0644bfc413cd8a5 Mon Sep 17 00:00:00 2001 From: Aaron Suggs Date: Mon, 11 Jul 2016 15:23:06 -0400 Subject: [PATCH] [tests] Fix gotcha with new activesupport redis versions This fixes the error: uninitialized constant ActiveSupport::VERSION when loading active_support/cache/redis_store --- spec/integration/offline_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/integration/offline_spec.rb b/spec/integration/offline_spec.rb index 43f564f..95598d4 100644 --- a/spec/integration/offline_spec.rb +++ b/spec/integration/offline_spec.rb @@ -1,5 +1,5 @@ require 'active_support/cache' -require 'active_support/cache/redis_store' +require 'redis-activesupport' require 'dalli' require_relative '../spec_helper'