scm: bazaar: do not use file:// for repository path at unit app test

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10387 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2012-09-16 04:12:42 +00:00
parent 4a7e148aff
commit ee0fc2e1d5
1 changed files with 1 additions and 2 deletions

View File

@ -23,13 +23,12 @@ class RepositoryBazaarTest < ActiveSupport::TestCase
include Redmine::I18n
REPOSITORY_PATH = Rails.root.join('tmp/test/bazaar_repository/trunk').to_s
REPOSITORY_PATH.gsub!(/\/+/, '/')
NUM_REV = 4
def setup
@project = Project.find(3)
@repository = Repository::Bazaar.create(
:project => @project, :url => "file:///#{REPOSITORY_PATH}",
:project => @project, :url => REPOSITORY_PATH,
:log_encoding => 'UTF-8')
assert @repository
end