Merge branch 'backup-delete-all-use-file-join' into 'master'

Use File.join in DeleteAllRepositories test

Closes #47108

See merge request gitlab-org/gitlab-ce!19310
This commit is contained in:
Sean McGivern 2018-06-01 12:50:30 +00:00
commit ccf052905c

View file

@ -92,7 +92,7 @@ describe Backup::Repository do
end end
def list_repositories def list_repositories
Dir[SEED_STORAGE_PATH + '/*.git'] Dir[File.join(SEED_STORAGE_PATH, '*.git')]
end end
end end