Use Time.utc for consistency with other tests
This also allows times to be created in short form, e.g. Time.utc(2020)
This commit is contained in:
parent
2f7642aa03
commit
73e0c4ed21
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue