Commit 1ab0df0c authored by Rémy Coutable's avatar Rémy Coutable

Merge branch 'ml-qa-public-group' into 'master'

QA: Set sandbox group visibility to public

See merge request gitlab-org/gitlab-ee!7977
parents e65e6972 4bc6b402
......@@ -30,7 +30,7 @@ module QA
group_name = is_sandbox_group ? Runtime::Namespace.sandbox_name : "group_#{SecureRandom.hex(8)}"
parent_id = is_sandbox_group ? nil : sandbox_group_id
create_group_request = create_request("/groups")
post create_group_request.url, name: group_name, path: group_name, parent_id: parent_id
post create_group_request.url, name: group_name, path: group_name, parent_id: parent_id, visibility: 'public'
expect_status(201)
json_body[:id]
end
......
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