From: abcang Date: Fri, 2 Feb 2018 09:10:18 +0000 (+0900) Subject: Fix mistake in cache deletion (#6408) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=1afc70c990d4d23e5fac57de9cb579c396a82b5c;p=mastodon.git Fix mistake in cache deletion (#6408) --- diff --git a/spec/models/setting_spec.rb b/spec/models/setting_spec.rb index e99dfc0d7..bbba5f98d 100644 --- a/spec/models/setting_spec.rb +++ b/spec/models/setting_spec.rb @@ -52,7 +52,7 @@ RSpec.describe Setting, type: :model do allow(RailsSettings::Settings).to receive(:object).with(key).and_return(object) allow(described_class).to receive(:default_settings).and_return(default_settings) allow_any_instance_of(Settings::ScopedSettings).to receive(:thing_scoped).and_return(records) - Rails.cache.clear(cache_key) + Rails.cache.delete(cache_key) end let(:object) { nil }