]> git.openstreetmap.org Git - rails.git/commitdiff
Merge remote-tracking branch 'upstream/pull/4063'
authorTom Hughes <tom@compton.nu>
Wed, 14 Jun 2023 16:08:59 +0000 (17:08 +0100)
committerTom Hughes <tom@compton.nu>
Wed, 14 Jun 2023 16:08:59 +0000 (17:08 +0100)
test/helpers/application_helper_test.rb
test/helpers/note_helper_test.rb

index 06c1c09f85133fb359e007de5ff5c38902188d8d..7cd6bce89417fb40ae497c1debdc032817d2ab90 100644 (file)
@@ -56,7 +56,7 @@ class ApplicationHelperTest < ActionView::TestCase
   end
 
   def test_friendly_date
-    date = friendly_date(Time.new(2014, 3, 5, 18, 58, 23).utc)
+    date = friendly_date(Time.utc(2014, 3, 5, 18, 58, 23))
     assert_match %r{^<span title=" *5 March 2014 at 18:58">.*</span>$}, date
 
     date = friendly_date(Time.now.utc - 1.hour)
index 75a0e521ee88acd657aba7e01a9f1f0b3ad3edf6..37518fb3d22b01765e5afade169ad93eaea476fa 100644 (file)
@@ -5,7 +5,7 @@ class NoteHelperTest < ActionView::TestCase
   include ApplicationHelper
 
   def test_note_event
-    date = Time.new(2014, 3, 5, 21, 37, 45, "+00:00")
+    date = Time.utc(2014, 3, 5, 21, 37, 45)
     user = create(:user)
 
     assert_match %r{^Created by anonymous <abbr title="Wed, 05 Mar 2014 21:37:45 \+0000"><span title=" 5 March 2014 at 21:37">.* ago</span></abbr>$}, note_event("opened", date, nil)
@@ -23,7 +23,7 @@ class NoteHelperTest < ActionView::TestCase
   end
 
   def test_disappear_in
-    note_closed_date = Time.new(2022, 1, 1, 12, 0, 0, "+00:00")
+    note_closed_date = Time.utc(2022, 1, 1, 12, 0, 0)
     note = create(:note, :closed_at => note_closed_date)
 
     travel_to note_closed_date + 1.day do