Browse Source

Fix broken tests due to r17593 (#29739).


git-svn-id: http://svn.redmine.org/redmine/trunk@17594 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/4.0.0
Go MAEDA 5 years ago
parent
commit
7be4200651
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      test/functional/timelog_report_test.rb
  2. 1
    1
      test/unit/lib/redmine/i18n_test.rb

+ 1
- 1
test/functional/timelog_report_test.rb View File

@@ -299,7 +299,7 @@ class TimelogReportTest < Redmine::ControllerTest
assert_equal "#{str_big5} #{user.lastname},7.30,7.30", lines[1]
assert_equal "#{s2},7.30,7.30", lines[2]

str_tw = "Traditional Chinese (\xe7\xb9\x81\xe9\xab\x94\xe4\xb8\xad\xe6\x96\x87)".force_encoding('UTF-8')
str_tw = "Chinese/Traditional (\xe7\xb9\x81\xe9\xab\x94\xe4\xb8\xad\xe6\x96\x87)".force_encoding('UTF-8')
assert_equal str_tw, l(:general_lang_name)
assert_equal 'Big5', l(:general_csv_encoding)
assert_equal ',', l(:general_csv_separator)

+ 1
- 1
test/unit/lib/redmine/i18n_test.rb View File

@@ -249,7 +249,7 @@ class Redmine::I18nTest < ActiveSupport::TestCase

def test_traditional_chinese_locale
set_language_if_valid 'zh-TW'
str_tw = "Traditional Chinese (\xe7\xb9\x81\xe9\xab\x94\xe4\xb8\xad\xe6\x96\x87)".force_encoding('UTF-8')
str_tw = "Chinese/Traditional (\xE7\xB9\x81\xE9\xAB\x94\xE4\xB8\xAD\xE6\x96\x87)".force_encoding('UTF-8')
assert_equal str_tw, l(:general_lang_name)
end


Loading…
Cancel
Save