Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrett Walker <brett@digitalmoksha.com>2017-09-09 19:32:27 +0300
committerBrett Walker <brett@digitalmoksha.com>2017-09-23 16:23:11 +0300
commitd2267beb8916de5003e06b8764f209508fca989f (patch)
tree4e1f1a35222d4873f17b8e9ad8a2b7955bc04836 /spec/services/emails
parentcf8a5bcaec99cc197ff556793febb8317e1db220 (diff)
tweaks for rubocop
Diffstat (limited to 'spec/services/emails')
-rw-r--r--spec/services/emails/confirm_service_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/services/emails/confirm_service_spec.rb b/spec/services/emails/confirm_service_spec.rb
index 2f348589136..21efe60266e 100644
--- a/spec/services/emails/confirm_service_spec.rb
+++ b/spec/services/emails/confirm_service_spec.rb
@@ -8,7 +8,7 @@ describe Emails::ConfirmService do
describe '#execute' do
it 'sends a confirmation email again' do
- email = user.emails.create(email: opts[:email])
+ user.emails.create(email: opts[:email])
mail = service.execute
expect(mail.subject).to eq('Confirmation instructions')
end