]> source.dussan.org Git - redmine.git/commitdiff
scm: fix indents of test/unit/changeset_test.rb.
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Mon, 9 May 2011 04:54:37 +0000 (04:54 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Mon, 9 May 2011 04:54:37 +0000 (04:54 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5711 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/unit/changeset_test.rb

index 158bb34e50eea424a39f3b75f37c549ff829f5d5..36671b97db3f9fcb4275a1fed04e75dd900a2729 100644 (file)
@@ -327,32 +327,32 @@ class ChangesetTest < ActiveSupport::TestCase
   end
 
   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 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!(
+    proj = Project.find(3)
+    str1 = "Texte encod\xe9 en ISO-8859-1"
+    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!(
             :project => proj,
             :url => '/tmp/test/bazaar',
             :log_encoding => 'UTF-8' )
-      assert r
-      cs = Changeset.new(
+    assert r
+    cs = Changeset.new(
                :repository   => r,
                :committed_on => Time.now,
                :revision     => '123',
                :scmid        => '12345',
                :comments     => "test")
-      assert( cs.save )
-      ch = Change.new(
+    assert(cs.save)
+    ch = Change.new(
                   :changeset     => cs,
                   :action        => "A",
                   :path          => str1,
                   :from_path     => str2,
                   :from_revision => "345")
-      assert( ch.save )
-      assert_equal "Texte encod? en ISO-8859-1", ch.path
-      assert_equal "?a?b?c?d?e test", ch.from_path
+    assert(ch.save)
+    assert_equal "Texte encod? en ISO-8859-1", ch.path
+    assert_equal "?a?b?c?d?e test", ch.from_path
   end
 
   def test_comments_nil