diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-05-05 00:54:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-05 00:54:24 +0200 |
commit | c73ce7b695aef1bbfe36bf674173d5a9fb988df5 (patch) | |
tree | ab1f94a5c72d70f2b978e4d1078e0f10ba488dbf /spec | |
parent | ef7d64c80109074b39983b50cc8cf701c337cdcc (diff) |
Store home feeds for 7 days instead of 14 (#7354)
* Store home feeds for 7 days instead of 14 Reduces workload for status fan-out to active followers * Fix test for user model
Diffstat (limited to 'spec')
-rw-r--r-- | spec/models/user_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/models/user_spec.rb b/spec/models/user_spec.rb index 760214ded..cc8d88cc8 100644 --- a/spec/models/user_spec.rb +++ b/spec/models/user_spec.rb @@ -75,7 +75,7 @@ RSpec.describe User, type: :model do describe 'inactive' do it 'returns a relation of inactive users' do specified = Fabricate(:user, current_sign_in_at: 15.days.ago) - Fabricate(:user, current_sign_in_at: 13.days.ago) + Fabricate(:user, current_sign_in_at: 6.days.ago) expect(User.inactive).to match_array([specified]) end |