Commit 7db27689 authored by Oswaldo Ferreira's avatar Oswaldo Ferreira

Adjust projects spec on namespace fields

parent da3e4f41
......@@ -698,7 +698,9 @@ describe API::Projects do
'name' => user.namespace.name,
'path' => user.namespace.path,
'kind' => user.namespace.kind,
'full_path' => user.namespace.full_path
'full_path' => user.namespace.full_path,
'parent_id' => nil,
'members_count' => nil
})
end
......
......@@ -734,7 +734,9 @@ describe API::V3::Projects do
'name' => user.namespace.name,
'path' => user.namespace.path,
'kind' => user.namespace.kind,
'full_path' => user.namespace.full_path
'full_path' => user.namespace.full_path,
'parent_id' => nil,
'members_count' => nil
})
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