diff options
author | abcang <abcang1015@gmail.com> | 2021-02-01 05:24:57 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-31 21:24:57 +0100 |
commit | 7ab53f221a3d66a0bbc94b36d847b7bcf62fbd16 (patch) | |
tree | 9f342e4abec9d11a64b464106fb1108ce514f5bb /spec/controllers | |
parent | c8c764dd8b168ec876918d16b3f25280893d20dc (diff) |
Improved performance of notification preloading (#15640)
* Improved performance of notification preloading * Remove Cacheable from Notification * Fix test
Diffstat (limited to 'spec/controllers')
-rw-r--r-- | spec/controllers/application_controller_spec.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/spec/controllers/application_controller_spec.rb b/spec/controllers/application_controller_spec.rb index 63ae27a92..e73a08a0e 100644 --- a/spec/controllers/application_controller_spec.rb +++ b/spec/controllers/application_controller_spec.rb @@ -349,10 +349,6 @@ describe ApplicationController, type: :controller do expect(C.new.cache_collection(raw, Object)).to eq raw end - context 'Notification' do - include_examples 'cacheable', :notification, Notification - end - context 'Status' do include_examples 'cacheable', :status, Status end |