]> source.dussan.org Git - redmine.git/commitdiff
fix source indent of IssuesHelperTest
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 26 Sep 2020 15:02:41 +0000 (15:02 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 26 Sep 2020 15:02:41 +0000 (15:02 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20088 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/helpers/issues_helper_test.rb

index f5692911f83fb7792aba959a841429ac4c7d2aa4..4fe60345433b090047bd8c73d24ecbdabb6be592 100644 (file)
@@ -117,12 +117,13 @@ class IssuesHelperTest < Redmine::HelperTest
   end
 
   test 'show_detail with a start_date attribute should format the dates' do
-    detail = JournalDetail.new(
-               :property  => 'attr',
-               :old_value => '2010-01-01',
-               :value     => '2010-01-31',
-               :prop_key  => 'start_date'
-            )
+    detail =
+      JournalDetail.new(
+        :property  => 'attr',
+        :old_value => '2010-01-01',
+        :value     => '2010-01-31',
+        :prop_key  => 'start_date'
+      )
     with_settings :date_format => '%m/%d/%Y' do
       assert_match "01/31/2010", show_detail(detail, true)
       assert_match "01/01/2010", show_detail(detail, true)
@@ -130,12 +131,13 @@ class IssuesHelperTest < Redmine::HelperTest
   end
 
   test 'show_detail with a due_date attribute should format the dates' do
-    detail = JournalDetail.new(
-              :property  => 'attr',
-              :old_value => '2010-01-01',
-              :value     => '2010-01-31',
-              :prop_key  => 'due_date'
-            )
+    detail =
+      JournalDetail.new(
+        :property  => 'attr',
+        :old_value => '2010-01-01',
+        :value     => '2010-01-31',
+        :prop_key  => 'due_date'
+      )
     with_settings :date_format => '%m/%d/%Y' do
       assert_match "01/31/2010", show_detail(detail, true)
       assert_match "01/01/2010", show_detail(detail, true)