From 587794b4b8a6e919e77ee4abe8215fa291e6a91d Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Wed, 2 Oct 2019 00:06:26 +0000 Subject: Add latest changes from gitlab-org/gitlab@master --- spec/factories/lists.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'spec/factories/lists.rb') 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 -- cgit v1.2.3