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:
authorblackst0ne <blackst0ne.ru@gmail.com>2017-03-24 15:40:35 +0300
committerblackst0ne <blackst0ne.ru@gmail.com>2017-03-24 15:40:35 +0300
commit1fb9de2bf746a32baeb74e57bf7f64525cc8ec3f (patch)
treed4207c0d90713c39977afabe2765806be89bd046 /spec/factories/lists.rb
parent6eeba4b18214e054bbdebd66f53586fc09256130 (diff)
Change Done column to Closed in issue boards
Diffstat (limited to 'spec/factories/lists.rb')
-rw-r--r--spec/factories/lists.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/factories/lists.rb b/spec/factories/lists.rb
index 2a2f3cca91c..f6a78811cbe 100644
--- a/spec/factories/lists.rb
+++ b/spec/factories/lists.rb
@@ -6,8 +6,8 @@ FactoryGirl.define do
sequence(:position)
end
- factory :done_list, parent: :list do
- list_type :done
+ factory :closed_list, parent: :list do
+ list_type :closed
label nil
position nil
end