Merge pull request #18000 from fabioy/fix-date-test

Fix test failure due to days-in-month check. Issue #17998.
pull/6/head
Karl Isenberg 2015-11-30 18:42:01 -08:00
commit 629409ffa6
1 changed files with 0 additions and 1 deletions

View File

@ -1217,7 +1217,6 @@ func TestTranslateTimestamp(t *testing.T) {
{"5 minutes ago", translateTimestamp(unversioned.Time{Time: time.Now().Add(-3e11)}), "5m"},
{"an hour ago", translateTimestamp(unversioned.Time{Time: time.Now().Add(-6e12)}), "1h"},
{"2 days ago", translateTimestamp(unversioned.Time{Time: time.Now().AddDate(0, 0, -2)}), "2d"},
{"months ago", translateTimestamp(unversioned.Time{Time: time.Now().AddDate(0, -3, 0)}), "92d"},
{"10 years ago", translateTimestamp(unversioned.Time{Time: time.Now().AddDate(-10, 0, 0)}), "10y"},
}
for _, test := range tl {