scm: mercurial: remove unnecessary log_encoding from overriding human_attribute_name test

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8966 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2012-02-24 12:38:58 +00:00
parent c5ed7bbce5
commit 41c16ecb2f
1 changed files with 2 additions and 3 deletions

View File

@ -51,8 +51,7 @@ class RepositoryMercurialTest < ActiveSupport::TestCase
set_language_if_valid 'en' set_language_if_valid 'en'
repo = Repository::Mercurial.new( repo = Repository::Mercurial.new(
:project => @project, :project => @project,
:identifier => 'test', :identifier => 'test'
:log_encoding => 'UTF-8'
) )
assert !repo.save assert !repo.save
assert_include "Path to repository can't be blank", assert_include "Path to repository can't be blank",
@ -67,7 +66,7 @@ class RepositoryMercurialTest < ActiveSupport::TestCase
:project => @project, :project => @project,
:url => "", :url => "",
:identifier => 'test', :identifier => 'test',
:log_encoding => 'UTF-8' :path_encoding => ''
) )
assert !repo.save assert !repo.save
assert_include str, repo.errors.full_messages assert_include str, repo.errors.full_messages