diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-01-17 10:01:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-17 10:01:02 +0100 |
commit | 430d4427916b44e6a7c16db1899dfef2eec140fc (patch) | |
tree | e53417f50f9e4ab4b95bf0e9fbb18b0e00b0ce7e /spec/models | |
parent | a85912b0d6d2ee68aa35794fbb51c5358768c092 (diff) | |
parent | 77dd4ab8f5d09b128db1e0227b2afcf73d8531e7 (diff) |
Merge pull request #1661 from ClearlyClaire/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'spec/models')
-rw-r--r-- | spec/models/status_pin_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/models/status_pin_spec.rb b/spec/models/status_pin_spec.rb index 6f0b2feb8..c18faca78 100644 --- a/spec/models/status_pin_spec.rb +++ b/spec/models/status_pin_spec.rb @@ -24,11 +24,11 @@ RSpec.describe StatusPin, type: :model do expect(StatusPin.new(account: account, status: reblog).save).to be false end - it 'does not allow pins of private statuses' do + it 'does allow pins of direct statuses' do account = Fabricate(:account) status = Fabricate(:status, account: account, visibility: :private) - expect(StatusPin.new(account: account, status: status).save).to be false + expect(StatusPin.new(account: account, status: status).save).to be true end it 'does not allow pins of direct statuses' do |