Commit 760dc3e4 authored by Kamil Trzcinski's avatar Kamil Trzcinski Committed by Marin Jankovski

Fix upload tests, reformat code and make rubocop happy

parent 7ea48bfb
...@@ -321,7 +321,6 @@ module Gitlab ...@@ -321,7 +321,6 @@ module Gitlab
def download_hypermedia_links(all_objects, existing_objects) def download_hypermedia_links(all_objects, existing_objects)
all_objects.each do |object| all_objects.each do |object|
# generate links only for existing objects
if existing_objects.include?(object['oid']) if existing_objects.include?(object['oid'])
object['actions'] = { object['actions'] = {
'download' => { 'download' => {
...@@ -344,7 +343,7 @@ module Gitlab ...@@ -344,7 +343,7 @@ module Gitlab
def upload_hypermedia_links(all_objects, existing_objects) def upload_hypermedia_links(all_objects, existing_objects)
all_objects.each do |object| all_objects.each do |object|
# generate links only for non-existing objects # generate actions only for non-existing objects
next if existing_objects.include?(object['oid']) next if existing_objects.include?(object['oid'])
object['actions'] = { object['actions'] = {
......
This diff is collapsed.
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