From 6f4461830c9a0bea1c976e820d38b0aa2ac7eae4 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Thu, 5 May 2011 04:22:49 +0000 Subject: [PATCH] scm: fix invalid UTF-8 tests fail on Windows Ruby 1.8. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5648 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/unit/changeset_test.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/unit/changeset_test.rb b/test/unit/changeset_test.rb index 242e5701..a433a858 100644 --- a/test/unit/changeset_test.rb +++ b/test/unit/changeset_test.rb @@ -260,7 +260,7 @@ class ChangesetTest < ActiveSupport::TestCase proj = Project.find(3) # str = File.read("#{RAILS_ROOT}/test/fixtures/encoding/iso-8859-1.txt") str1 = "Texte encod\xe9 en ISO-8859-1." - str2 = "\xe9a\xe9b\xe9c\xe9d\xe9e" + str2 = "\xe9a\xe9b\xe9c\xe9d\xe9e test" str1.force_encoding("UTF-8") if str1.respond_to?(:force_encoding) str2.force_encoding("ASCII-8BIT") if str2.respond_to?(:force_encoding) r = Repository::Bazaar.create!( @@ -276,7 +276,7 @@ class ChangesetTest < ActiveSupport::TestCase :committer => str2) assert( c.save ) assert_equal "Texte encod? en ISO-8859-1.", c.comments - assert_equal "?a?b?c?d?e", c.committer + assert_equal "?a?b?c?d?e test", c.committer end def test_invalid_utf8_sequences_in_comments_should_be_replaced_ja_jis @@ -329,7 +329,7 @@ class ChangesetTest < ActiveSupport::TestCase def test_invalid_utf8_sequences_in_paths_should_be_replaced proj = Project.find(3) str1 = "Texte encod\xe9 en ISO-8859-1" - str2 = "\xe9a\xe9b\xe9c\xe9d\xe9e" + str2 = "\xe9a\xe9b\xe9c\xe9d\xe9e test" str1.force_encoding("UTF-8") if str1.respond_to?(:force_encoding) str2.force_encoding("ASCII-8BIT") if str2.respond_to?(:force_encoding) r = Repository::Bazaar.create!( @@ -352,7 +352,7 @@ class ChangesetTest < ActiveSupport::TestCase :from_revision => "345") assert( ch.save ) assert_equal "Texte encod? en ISO-8859-1", ch.path - assert_equal "?a?b?c?d?e", ch.from_path + assert_equal "?a?b?c?d?e test", ch.from_path end def test_comments_nil -- 2.11.0