From 45f25647efc4e83c848cc42fffb723c8eef7bd4c Mon Sep 17 00:00:00 2001 From: Mac Siri Date: Fri, 10 Mar 2023 06:59:30 -0500 Subject: [PATCH] Fix flaky notifications_spec (#19215) --- spec/requests/notifications_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/requests/notifications_spec.rb b/spec/requests/notifications_spec.rb index fe178d06f..0e23b63ea 100644 --- a/spec/requests/notifications_spec.rb +++ b/spec/requests/notifications_spec.rb @@ -238,7 +238,7 @@ RSpec.describe "NotificationsIndex" do it "properly renders reactable titles for multiple reactions" do amount = rand(3..10) - mock_heart_reaction_notifications(amount, %w[unicorn like readinglist], special_characters_article) + mock_heart_reaction_notifications(amount, %w[unicorn like], special_characters_article) get "/notifications" expect(response.body).to include ERB::Util.html_escape(special_characters_article.title) end