mirror of https://github.com/k3s-io/k3s
Merge pull request #18000 from fabioy/fix-date-test
Fix test failure due to days-in-month check. Issue #17998.pull/6/head
commit
629409ffa6
|
@ -1217,7 +1217,6 @@ func TestTranslateTimestamp(t *testing.T) {
|
||||||
{"5 minutes ago", translateTimestamp(unversioned.Time{Time: time.Now().Add(-3e11)}), "5m"},
|
{"5 minutes ago", translateTimestamp(unversioned.Time{Time: time.Now().Add(-3e11)}), "5m"},
|
||||||
{"an hour ago", translateTimestamp(unversioned.Time{Time: time.Now().Add(-6e12)}), "1h"},
|
{"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"},
|
{"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"},
|
{"10 years ago", translateTimestamp(unversioned.Time{Time: time.Now().AddDate(-10, 0, 0)}), "10y"},
|
||||||
}
|
}
|
||||||
for _, test := range tl {
|
for _, test := range tl {
|
||||||
|
|
Loading…
Reference in New Issue