PDF: use SJIS instead of CP932 at unit pdf test test_rdm_pdf_iconv_cannot_convert_ja_cp932 in JRuby (#8565, #61).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6022 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
a367732d4d
commit
8d620a1297
|
@ -38,8 +38,12 @@ class PdfTest < ActiveSupport::TestCase
|
|||
set_language_if_valid 'ja'
|
||||
assert_equal 'CP932', l(:general_pdf_encoding)
|
||||
if RUBY_VERSION < '1.9'
|
||||
if RUBY_PLATFORM == 'java'
|
||||
ic = Iconv.new("SJIS", 'UTF-8')
|
||||
else
|
||||
ic = Iconv.new(l(:general_pdf_encoding), 'UTF-8')
|
||||
end
|
||||
end
|
||||
utf8_txt_1 = "\xe7\x8b\x80\xe6\x85\x8b"
|
||||
utf8_txt_2 = "\xe7\x8b\x80\xe6\x85\x8b\xe7\x8b\x80"
|
||||
utf8_txt_3 = "\xe7\x8b\x80\xe7\x8b\x80\xe6\x85\x8b\xe7\x8b\x80"
|
||||
|
|
Loading…
Reference in New Issue