1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2024-11-28 08:39:03 +02:00

Fix TestIssueService_Get_Fields_Changelog test to use time.Equal

This commit is contained in:
Oleh Roshnivskyi 2018-09-03 22:55:40 +03:00
parent 1baa0576ef
commit 17a49a2fd9

View File

@ -1358,7 +1358,7 @@ func TestIssueService_Get_Fields_Changelog(t *testing.T) {
tm, _ := time.Parse("2006-01-02T15:04:05.999-0700", "2018-06-20T16:50:35.000+0300")
if ct, _ := issue.Changelog.Histories[0].CreatedTime(); ct != tm {
t.Errorf("Expected CreatedTime func return 2018-06-20T16:50:35.000+0300 time, %v got", ct)
if ct, _ := issue.Changelog.Histories[0].CreatedTime(); !tm.Equal(ct) {
t.Errorf("Expected CreatedTime func return %v time, %v got", tm, ct)
}
}