]> source.dussan.org Git - redmine.git/commitdiff
remove trailing white-spaces from test/unit/attachment_test.rb.
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Mon, 29 Aug 2011 00:04:31 +0000 (00:04 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Mon, 29 Aug 2011 00:04:31 +0000 (00:04 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6705 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/unit/attachment_test.rb

index d433ae7572ea57ede3feefa531b036402887484e..0572b05cf08aded4034d9f924d57bb6b1bfef39c 100644 (file)
@@ -75,7 +75,7 @@ class AttachmentTest < ActiveSupport::TestCase
             'description' => 'test'
           })
       end
-      
+
       attachment = Attachment.first(:order => 'id DESC')
       assert_equal issue, attachment.container
       assert_equal 'testfile.txt', attachment.filename
@@ -85,7 +85,7 @@ class AttachmentTest < ActiveSupport::TestCase
       assert File.exists?(attachment.diskfile)
       assert_equal 59, File.size(attachment.diskfile)
     end
-    
+
     should "add unsaved files to the object as unsaved attachments" do
       # Max size of 0 to force Attachment creation failures
       with_settings(:attachment_max_size => 0) do