Commit b8233eac authored by Igor Drozdov's avatar Igor Drozdov

Merge branch 'caalberts-fix-spec-helper-params' into 'master'

Fix helper method parameters in notification_service_spec.rb

See merge request gitlab-org/gitlab!40495
parents df2052b5 276e74f2
...@@ -3172,11 +3172,11 @@ RSpec.describe NotificationService, :mailer do ...@@ -3172,11 +3172,11 @@ RSpec.describe NotificationService, :mailer do
end end
def should_email_nested_group_user(user, times: 1, recipients: email_recipients) def should_email_nested_group_user(user, times: 1, recipients: email_recipients)
should_email(user, times: 1, recipients: email_recipients) should_email(user, times: times, recipients: recipients)
end end
def should_not_email_nested_group_user(user, recipients: email_recipients) def should_not_email_nested_group_user(user, recipients: email_recipients)
should_not_email(user, recipients: email_recipients) should_not_email(user, recipients: recipients)
end end
def add_users(project) def add_users(project)
......
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