Fix test that was broken because of different glitch-soc default settings

This commit is contained in:
Claire 2026-06-07 15:17:40 +02:00
parent cf6fdcb166
commit 1b5b83114a

View File

@ -8,7 +8,12 @@ RSpec.describe 'Tags' do
let(:tag) { Fabricate :tag }
let(:status) { Fabricate :status }
before { status.tags << tag }
before do
Setting.local_topic_feed_access = 'public'
Setting.remote_topic_feed_access = 'public'
status.tags << tag
end
context 'with HTML format' do
before { get tag_path(tag) }