diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-03-01 10:27:30 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-03-01 10:27:30 +0000 |
commit | 5f5dec16f2ececf806404d497886e9cb5e454281 (patch) | |
tree | a7d7998ba8f8da7ac92ec0592ff6a13c52f4479b /test/functional/repositories_cvs_controller_test.rb | |
parent | c09b6edaf405754b969566b9da7d9284f80a34e6 (diff) | |
download | redmine-5f5dec16f2ececf806404d497886e9cb5e454281.tar.gz redmine-5f5dec16f2ececf806404d497886e9cb5e454281.zip |
scm: add feature of per project repository log encoding setting (#1735).
Subversion, Mercurial and Git supports UTF-8 log.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4982 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/repositories_cvs_controller_test.rb')
-rw-r--r-- | test/functional/repositories_cvs_controller_test.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/repositories_cvs_controller_test.rb b/test/functional/repositories_cvs_controller_test.rb index ca040e3f2..6a6be3883 100644 --- a/test/functional/repositories_cvs_controller_test.rb +++ b/test/functional/repositories_cvs_controller_test.rb @@ -41,7 +41,8 @@ class RepositoriesCvsControllerTest < ActionController::TestCase @project = Project.find(PRJ_ID) @repository = Repository::Cvs.create(:project => Project.find(PRJ_ID), :root_url => REPOSITORY_PATH, - :url => MODULE_NAME) + :url => MODULE_NAME, + :log_encoding => 'UTF-8') assert @repository end |