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:
authorGitLab Bot <gitlab-bot@gitlab.com>2019-10-02 03:06:26 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2019-10-02 03:06:26 +0300
commit587794b4b8a6e919e77ee4abe8215fa291e6a91d (patch)
tree380d6578d1ab5902bb521071128bafd4f70472ef /spec/factories/lists.rb
parente0bd3a45d9dc6c74cac1a33ea8c03d6d8334249b (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/factories/lists.rb')
-rw-r--r--spec/factories/lists.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/spec/factories/lists.rb b/spec/factories/lists.rb
index e68611ec518..8785d3f0468 100644
--- a/spec/factories/lists.rb
+++ b/spec/factories/lists.rb
@@ -4,19 +4,19 @@ FactoryBot.define do
factory :list do
board
label
- list_type :label
+ list_type { :label }
sequence(:position)
end
factory :backlog_list, parent: :list do
- list_type :backlog
- label nil
- position nil
+ list_type { :backlog }
+ label { nil }
+ position { nil }
end
factory :closed_list, parent: :list do
- list_type :closed
- label nil
- position nil
+ list_type { :closed }
+ label { nil }
+ position { nil }
end
end