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:
authorNick Thomas <nick@gitlab.com>2016-08-15 16:38:22 +0300
committerNick Thomas <nick@gitlab.com>2016-08-15 16:38:22 +0300
commitb450aab8501076740cd7140b47488b9dfa5f58f9 (patch)
treed9bd32b35ad5e80838b194af1e99244c8dedf791 /spec/services/notification_service_spec.rb
parente200c8ae2cdfd4c35167853ac03196b0dd36b4ff (diff)
Remove superfluous parens on a method call
Diffstat (limited to 'spec/services/notification_service_spec.rb')
-rw-r--r--spec/services/notification_service_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/services/notification_service_spec.rb b/spec/services/notification_service_spec.rb
index 1935451ff12..d61de6c15d1 100644
--- a/spec/services/notification_service_spec.rb
+++ b/spec/services/notification_service_spec.rb
@@ -406,7 +406,7 @@ describe NotificationService, services: true do
end
it "should not email anyone unless they are newly mentioned" do
- send_notifications()
+ send_notifications
expect(ActionMailer::Base.deliveries).to eq []
end