summaryrefslogtreecommitdiff
path: root/spec/support/helpers/lfs_http_helpers.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/helpers/lfs_http_helpers.rb')
-rw-r--r--spec/support/helpers/lfs_http_helpers.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/spec/support/helpers/lfs_http_helpers.rb b/spec/support/helpers/lfs_http_helpers.rb
index 199d5e70e32..91ed56b4d13 100644
--- a/spec/support/helpers/lfs_http_helpers.rb
+++ b/spec/support/helpers/lfs_http_helpers.rb
@@ -52,11 +52,9 @@ module LfsHttpHelpers
end
def request_body(operation, objects)
- objects = [objects] unless objects.is_a?(Array)
-
{
'operation' => operation,
- 'objects' => objects
+ 'objects' => Array.wrap(objects)
}
end
end