From 579ae4f6e80c2a487a00d3b71c7b7414d4599ca3 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Wed, 15 Jul 2020 16:36:47 +0000 Subject: [PATCH] fix source indent of ApplicationHelperTest#test_due_date_distance_in_words git-svn-id: http://svn.redmine.org/redmine/trunk@19904 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/helpers/application_helper_test.rb | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/test/helpers/application_helper_test.rb b/test/helpers/application_helper_test.rb index 04121c4d0..90ed78513 100644 --- a/test/helpers/application_helper_test.rb +++ b/test/helpers/application_helper_test.rb @@ -1504,14 +1504,15 @@ class ApplicationHelperTest < Redmine::HelperTest end def test_due_date_distance_in_words - to_test = { Date.today => 'Due in 0 days', - Date.today + 1 => 'Due in 1 day', - Date.today + 100 => 'Due in about 3 months', - Date.today + 20000 => 'Due in over 54 years', - Date.today - 1 => '1 day late', - Date.today - 100 => 'about 3 months late', - Date.today - 20000 => 'over 54 years late', - } + to_test = { + Date.today => 'Due in 0 days', + Date.today + 1 => 'Due in 1 day', + Date.today + 100 => 'Due in about 3 months', + Date.today + 20000 => 'Due in over 54 years', + Date.today - 1 => '1 day late', + Date.today - 100 => 'about 3 months late', + Date.today - 20000 => 'over 54 years late', + } ::I18n.locale = :en to_test.each do |date, expected| assert_equal expected, due_date_distance_in_words(date) -- 2.39.5