Commit 21443630 authored by Ryan Cobb's avatar Ryan Cobb

Remove unnecessary freezes

parent d3e57202
......@@ -9,7 +9,7 @@ describe "Admin sends notification", :js, :sidekiq_might_not_need_inline do
let(:user) { create(:user) }
before do
stub_const('NOTIFICATION_TEXT', 'Your project has been moved.'.freeze)
stub_const('NOTIFICATION_TEXT', 'Your project has been moved.')
group.add_developer(user)
......
......@@ -7,7 +7,7 @@ describe "Admin unsubscribes from notification" do
let_it_be(:urlsafe_email) { Base64.urlsafe_encode64(user.email) }
before do
stub_const('NOTIFICATION_TEXT', 'You have been unsubscribed from receiving GitLab administrator notifications.'.freeze)
stub_const('NOTIFICATION_TEXT', 'You have been unsubscribed from receiving GitLab administrator notifications.')
sign_in(user)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment