Skip to content
Snippets Groups Projects
Commit 1d775d97 authored by James Lopez's avatar James Lopez
Browse files

fix spec

parent 150a4485
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -17,7 +17,7 @@ class CycleAnalytics
end
 
def no_stats?
stats.all? { hash[:value].nil? }
stats.all? { |hash| hash[:value].nil? }
end
 
def permissions(user:)
Loading
Loading
Loading
Loading
@@ -42,8 +42,8 @@ module Gitlab
 
def event_fetcher
@event_fetcher ||= Gitlab::CycleAnalytics::EventFetcher[name].new(project: @project,
stage: name,
options: event_options)
stage: name,
options: event_options)
end
 
def event_options
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment