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:
authorJames Lopez <james@jameslopez.es>2016-11-28 18:09:41 +0300
committerJames Lopez <james@jameslopez.es>2017-02-06 17:25:21 +0300
commit58a5d4a9e3f662428661d00ae543c6927b3a2ff4 (patch)
tree4d943c26b5879292c16db91272b489fd2e7b940e /spec/lib/gitlab/cycle_analytics
parent40bc96c902fed5af93653e1c0960125e420783e5 (diff)
user project and not empty_project as we need the repo stuff
Diffstat (limited to 'spec/lib/gitlab/cycle_analytics')
-rw-r--r--spec/lib/gitlab/cycle_analytics/events_query_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/lib/gitlab/cycle_analytics/events_query_spec.rb b/spec/lib/gitlab/cycle_analytics/events_query_spec.rb
index a0da93dadee..6aac2ed78d9 100644
--- a/spec/lib/gitlab/cycle_analytics/events_query_spec.rb
+++ b/spec/lib/gitlab/cycle_analytics/events_query_spec.rb
@@ -2,7 +2,7 @@ require 'spec_helper'
describe Gitlab::CycleAnalytics::EventsQuery do
let(:max_events) { 3 }
- let(:project) { create(:empty_project) }
+ let(:project) { create(:project) }
let(:user) { create(:user, :admin) }
let(:options) { { from: 30.days.ago } }