]> git.openstreetmap.org Git - rails.git/commitdiff
Use Time.utc for consistency with other tests
authorAndy Allan <git@gravitystorm.co.uk>
Wed, 14 Jun 2023 15:44:13 +0000 (16:44 +0100)
committerAndy Allan <git@gravitystorm.co.uk>
Wed, 14 Jun 2023 15:46:27 +0000 (16:46 +0100)
This also allows times to be created in short form, e.g. Time.utc(2020)

test/helpers/note_helper_test.rb

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