From 73e0c4ed2126ee378a912c6fab654dd8e0173c69 Mon Sep 17 00:00:00 2001 From: Andy Allan Date: Wed, 14 Jun 2023 16:44:13 +0100 Subject: [PATCH] Use Time.utc for consistency with other tests This also allows times to be created in short form, e.g. Time.utc(2020) --- test/helpers/note_helper_test.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/helpers/note_helper_test.rb b/test/helpers/note_helper_test.rb index 75a0e521e..37518fb3d 100644 --- a/test/helpers/note_helper_test.rb +++ b/test/helpers/note_helper_test.rb @@ -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 .* ago$}, 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 -- 2.45.1