Commit e2c7f699 authored by Stan Hu's avatar Stan Hu

Fix dev-fixtures failing on master

Since we added name validations for groups in the latest security
release, group names with parens are no longer allowed. Fix the
fixtures so that we only used allowed characters.

Closes https://gitlab.com/gitlab-org/gitlab/-/issues/212625
parent 3968d6c1
......@@ -160,7 +160,7 @@ class Gitlab::Seeder::CycleAnalytics
creator: admin,
namespace: FactoryBot.create(
:group,
name: "Value Stream Management Group (#{suffix})",
name: "Value Stream Management Group #{suffix}",
path: "vsmg-#{suffix}"
)
)
......
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