summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Lopez <james@jameslopez.es>2016-11-21 11:52:04 +0100
committerJames Lopez <james@jameslopez.es>2016-11-21 11:52:04 +0100
commitd747c1c0f974034d71a25edc2c8e525d3657c774 (patch)
tree328ed362bab0ac331cc16d916099a70bef36016e
parent0fd397bba1a36136c3737165c9057bc59dcbca77 (diff)
downloadgitlab-ce-d747c1c0f974034d71a25edc2c8e525d3657c774.tar.gz
fix spec failure
-rw-r--r--spec/models/cycle_analytics/summary_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/models/cycle_analytics/summary_spec.rb b/spec/models/cycle_analytics/summary_spec.rb
index dfbd9a553bc..9d67bc82cba 100644
--- a/spec/models/cycle_analytics/summary_spec.rb
+++ b/spec/models/cycle_analytics/summary_spec.rb
@@ -4,7 +4,7 @@ describe CycleAnalytics::Summary, models: true do
let(:project) { create(:project) }
let(:from) { Time.now }
let(:user) { create(:user, :admin) }
- subject { described_class.new(project, from: from, user: user) }
+ subject { described_class.new(project, from: from) }
describe "#new_issues" do
it "finds the number of issues created after the 'from date'" do