Commit 4bc6b402 authored by Mark Lapierre's avatar Mark Lapierre

Set sandbox group visibility to public

If the sandbox group isn't public subsequent tests fail because they
can't add public subgroups.
parent c7fce62b
...@@ -30,7 +30,7 @@ module QA ...@@ -30,7 +30,7 @@ module QA
group_name = is_sandbox_group ? Runtime::Namespace.sandbox_name : "group_#{SecureRandom.hex(8)}" group_name = is_sandbox_group ? Runtime::Namespace.sandbox_name : "group_#{SecureRandom.hex(8)}"
parent_id = is_sandbox_group ? nil : sandbox_group_id parent_id = is_sandbox_group ? nil : sandbox_group_id
create_group_request = create_request("/groups") 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) expect_status(201)
json_body[:id] json_body[:id]
end 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