diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-03-20 18:25:38 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-03-20 18:25:38 +0000 |
commit | f279b48288fee4c0bea73d7caffc2287d3a2ae47 (patch) | |
tree | 8b4ebf3dae6202a68f6ee1381d8e013501096154 /test/unit/repository_subversion_test.rb | |
parent | 85462261aca8aa78a51c8152578a067044b0c532 (diff) | |
download | redmine-f279b48288fee4c0bea73d7caffc2287d3a2ae47.tar.gz redmine-f279b48288fee4c0bea73d7caffc2287d3a2ae47.zip |
Fixes subversion tests not running on win32.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5175 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit/repository_subversion_test.rb')
-rw-r--r-- | test/unit/repository_subversion_test.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/unit/repository_subversion_test.rb b/test/unit/repository_subversion_test.rb index ca3bd9b48..071660c2d 100644 --- a/test/unit/repository_subversion_test.rb +++ b/test/unit/repository_subversion_test.rb @@ -1,5 +1,5 @@ -# redMine - project management software -# Copyright (C) 2006-2007 Jean-Philippe Lang +# Redmine - project management software +# Copyright (C) 2006-2011 Jean-Philippe Lang # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -23,7 +23,7 @@ class RepositorySubversionTest < ActiveSupport::TestCase def setup @project = Project.find(3) @repository = Repository::Subversion.create(:project => @project, - :url => "file://#{self.class.repository_path('subversion')}") + :url => self.class.subversion_repository_url) assert @repository end |