Commit 636b4c6d authored by Robert Speicher's avatar Robert Speicher

Merge branch 'fix-milestone-seedfu' into 'master'

Fix seed_fu failure with inserting milestones into test DB

Milestones were not being saved due to "invalid state" validation errors

See merge request !3641
parents 6e47f309 8536dedb
......@@ -4,7 +4,7 @@ Gitlab::Seeder.quiet do
milestone_params = {
title: "v#{i}.0",
description: FFaker::Lorem.sentence,
state: ['opened', 'closed'].sample,
state: [:active, :closed].sample,
}
milestone = Milestones::CreateService.new(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment