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
@@ -17,7 +17,7 @@ class CycleAnalytics
Loading
@@ -17,7 +17,7 @@ class CycleAnalytics
end end
   
def no_stats? def no_stats?
stats.all? { hash[:value].nil? } stats.all? { |hash| hash[:value].nil? }
end end
   
def permissions(user:) def permissions(user:)
Loading
Loading
Loading
@@ -42,8 +42,8 @@ module Gitlab
Loading
@@ -42,8 +42,8 @@ module Gitlab
   
def event_fetcher def event_fetcher
@event_fetcher ||= Gitlab::CycleAnalytics::EventFetcher[name].new(project: @project, @event_fetcher ||= Gitlab::CycleAnalytics::EventFetcher[name].new(project: @project,
stage: name, stage: name,
options: event_options) options: event_options)
end end
   
def event_options 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