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:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-01-26 17:23:57 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-01-26 17:23:57 +0300
commit966176512797f037eb933691a2a21a8c3bb280b7 (patch)
tree40a0193e8942edd221ebf3cebaae25a10e7bf72e /spec/factories/commit_statuses.rb
parent88d59d0161ac2f4890cfe77bb81c687a561b17ac (diff)
Update commit status factory to reflect recent changes
Diffstat (limited to 'spec/factories/commit_statuses.rb')
-rw-r--r--spec/factories/commit_statuses.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/spec/factories/commit_statuses.rb b/spec/factories/commit_statuses.rb
index 45b11edcef3..b7c2b32cb13 100644
--- a/spec/factories/commit_statuses.rb
+++ b/spec/factories/commit_statuses.rb
@@ -1,11 +1,10 @@
FactoryGirl.define do
factory :commit_status, class: CommitStatus do
name 'default'
- ref 'master'
status 'success'
description 'commit status'
commit factory: :ci_commit_with_one_job
- started_at 'Tue, 26 Jan 2016 08:23:42 +0100'
+ started_at 'Tue, 26 Jan 2016 08:21:42 +0100'
finished_at 'Tue, 26 Jan 2016 08:23:42 +0100'
after(:build) do |build, evaluator|