13996: Migrate tests to new config
[arvados.git] / services / api / test / unit / repository_test.rb
index fa4c37f74f211b6afe5d0b90804e9b2c85ce97c5..2f6235029139f506a560f6b9bd8685828b3a903c 100644 (file)
@@ -23,15 +23,15 @@ class RepositoryTest < ActiveSupport::TestCase
   def default_git_url(repo_name, user_name=nil)
     if user_name
       "git@git.%s.arvadosapi.com:%s/%s.git" %
-        [Rails.configuration.uuid_prefix, user_name, repo_name]
+        [Rails.configuration.ClusterID, user_name, repo_name]
     else
       "git@git.%s.arvadosapi.com:%s.git" %
-        [Rails.configuration.uuid_prefix, repo_name]
+        [Rails.configuration.ClusterID, repo_name]
     end
   end
 
   def assert_server_path(path_tail, repo_sym)
-    assert_equal(File.join(Rails.configuration.git_repositories_dir, path_tail),
+    assert_equal(File.join(Rails.configuration.Git["Repositories"], path_tail),
                  repositories(repo_sym).server_path)
   end