X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/0e659500b47d9bd4dc3e4c96167b3e55ac14082f..8f987a9271eda80697b3a8fc53e7ebb0f93816f9:/services/api/test/test_helper.rb diff --git a/services/api/test/test_helper.rb b/services/api/test/test_helper.rb index e1f7542e93..c834250cb6 100644 --- a/services/api/test/test_helper.rb +++ b/services/api/test/test_helper.rb @@ -127,11 +127,11 @@ class ActiveSupport::TestCase "HTTP_AUTHORIZATION" => "OAuth2 #{t}") end - def salt_token(fixture:, remote_id:) + def salt_token(fixture:, remote:) auth = api_client_authorizations(fixture) uuid = auth.uuid token = auth.api_token - hmac = OpenSSL::HMAC.hexdigest('sha1', token, remote_id) + hmac = OpenSSL::HMAC.hexdigest('sha1', token, remote) return "v2/#{uuid}/#{hmac}" end