From 4adb12ca9157ae0efc0b813df3a09ef8f6d579de Mon Sep 17 00:00:00 2001 From: Claire Date: Sat, 2 Sep 2023 14:23:18 +0200 Subject: [PATCH] Fix test failures due to different default settings in glitch-soc --- spec/controllers/api/v1/timelines/tag_controller_spec.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/spec/controllers/api/v1/timelines/tag_controller_spec.rb b/spec/controllers/api/v1/timelines/tag_controller_spec.rb index 1c60798fc..8896f02a7 100644 --- a/spec/controllers/api/v1/timelines/tag_controller_spec.rb +++ b/spec/controllers/api/v1/timelines/tag_controller_spec.rb @@ -22,6 +22,10 @@ describe Api::V1::Timelines::TagController do end context 'when the instance allows public preview' do + before do + Setting.timeline_preview = true + end + context 'when the user is not authenticated' do let(:token) { nil }