OSDN Git Service

remove trailing white-spaces from unit issues helper test.
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Mon, 16 May 2011 22:56:46 +0000 (22:56 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Mon, 16 May 2011 22:56:46 +0000 (22:56 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5804 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/unit/helpers/issues_helper_test.rb

index 7a40abe..7f78f09 100644 (file)
@@ -5,12 +5,12 @@
 # modify it under the terms of the GNU General Public License
 # as published by the Free Software Foundation; either version 2
 # of the License, or (at your option) any later version.
-# 
+#
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
-# 
+#
 # You should have received a copy of the GNU General Public License
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
@@ -43,25 +43,25 @@ class IssuesHelperTest < HelperTestCase
   def request
     @request ||= ActionController::TestRequest.new
   end
-  
+
   def test_issue_heading
     assert_equal "Bug #1", issue_heading(Issue.find(1))
   end
-  
+
   def test_issues_destroy_confirmation_message_with_one_root_issue
     assert_equal l(:text_issues_destroy_confirmation), issues_destroy_confirmation_message(Issue.find(1))
   end
-  
+
   def test_issues_destroy_confirmation_message_with_an_arrayt_of_root_issues
     assert_equal l(:text_issues_destroy_confirmation), issues_destroy_confirmation_message(Issue.find([1, 2]))
   end
-  
+
   def test_issues_destroy_confirmation_message_with_one_parent_issue
     Issue.find(2).update_attribute :parent_issue_id, 1
     assert_equal l(:text_issues_destroy_confirmation) + "\n" + l(:text_issues_destroy_descendants_confirmation, :count => 1),
       issues_destroy_confirmation_message(Issue.find(1))
   end
-  
+
   def test_issues_destroy_confirmation_message_with_one_parent_issue_and_its_child
     Issue.find(2).update_attribute :parent_issue_id, 1
     assert_equal l(:text_issues_destroy_confirmation), issues_destroy_confirmation_message(Issue.find([1, 2]))