X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/1586823b65c7ec7656626e491a31f3f9516a4a56..91cd750b78b39195b0e8f3328a3e7f34484172a3:/services/api/test/functional/arvados/v1/virtual_machines_controller_test.rb diff --git a/services/api/test/functional/arvados/v1/virtual_machines_controller_test.rb b/services/api/test/functional/arvados/v1/virtual_machines_controller_test.rb index 626d7f04b0..9367775ec5 100644 --- a/services/api/test/functional/arvados/v1/virtual_machines_controller_test.rb +++ b/services/api/test/functional/arvados/v1/virtual_machines_controller_test.rb @@ -1,9 +1,13 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + require 'test_helper' class Arvados::V1::VirtualMachinesControllerTest < ActionController::TestCase def get_logins_for(vm_sym) authorize_with :admin - get(:logins, id: virtual_machines(vm_sym).uuid) + get(:logins, params: {id: virtual_machines(vm_sym).uuid}) end def find_login(sshkey_sym) @@ -56,7 +60,7 @@ class Arvados::V1::VirtualMachinesControllerTest < ActionController::TestCase properties: {'username' => 'bobblogin'}) end authorize_with :admin - get :logins, id: vm.uuid + get :logins, params: {id: vm.uuid} assert_response :success assert_equal 1, json_response['items'].length assert_nil json_response['items'][0]['public_key']