7478: Fixes child CR default preemptable setting logic.
[arvados.git] / services / api / test / test_helper.rb
index e1f7542e9392e701829ed4d606e40c3d25c89c7b..c834250cb6caa89c28ff25ad942978dd14399949 100644 (file)
@@ -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