summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsh McKenzie <amckenzie@gitlab.com>2019-09-06 17:12:00 +1000
committerAsh McKenzie <amckenzie@gitlab.com>2019-09-06 17:41:52 +1000
commit9192e938baf579df38a08f8d139a2bf094833693 (patch)
tree355d243219a138cada8b8e0c78404d1bdc968da9
parent351d72cbed57c5b117e6b2239dffabcedbc45046 (diff)
downloadgitlab-ce-67100-danger-comment-is-missing.tar.gz
Correctly determines if gitlab helper is present67100-danger-comment-is-missing
-rw-r--r--lib/gitlab/danger/helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/danger/helper.rb b/lib/gitlab/danger/helper.rb
index 702c73e8e4d..002222882f3 100644
--- a/lib/gitlab/danger/helper.rb
+++ b/lib/gitlab/danger/helper.rb
@@ -39,7 +39,7 @@ module Gitlab
end
def gitlab_helper
- gitlab if respond_to?(:gitlab)
+ gitlab if respond_to?(:gitlab, true)
end
def release_automation?