From 87737e50a2356fe9fba16ceac46ec773a975a4f6 Mon Sep 17 00:00:00 2001 From: Sebastian Serth Date: Sat, 3 Sep 2022 00:10:11 +0200 Subject: [PATCH] Fix Rubocop offenses --- spec/mailers/user_mailer_spec.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/spec/mailers/user_mailer_spec.rb b/spec/mailers/user_mailer_spec.rb index ace8f719..324c0945 100644 --- a/spec/mailers/user_mailer_spec.rb +++ b/spec/mailers/user_mailer_spec.rb @@ -148,7 +148,6 @@ describe UserMailer do expect(token.expire_at - Time.zone.now).to be_within(5.minutes).of(7.days) end - it 'sets the correct comment' do expect(mail.body).to include(request_for_comment.comments.first.text) end @@ -202,7 +201,6 @@ describe UserMailer do expect(token.expire_at - Time.zone.now).to be_within(5.minutes).of(7.days) end - it 'sets the correct thank_you_note' do expect(mail.body).to include(request_for_comment.thank_you_note) end