7478: Fixes child CR default preemptable setting logic.
[arvados.git] / services / api / test / test_helper.rb
index 639b53bfa717f1a89a5a30cadeaf7ea7eee7fe3f..c834250cb6caa89c28ff25ad942978dd14399949 100644 (file)
@@ -127,12 +127,12 @@ 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)
-    return "v2,#{uuid},#{hmac}"
+    hmac = OpenSSL::HMAC.hexdigest('sha1', token, remote)
+    return "v2/#{uuid}/#{hmac}"
   end
 
   def self.skip_slow_tests?