(t *testing.T)
| 353 | } |
| 354 | |
| 355 | func TestShortDate(t *testing.T) { |
| 356 | require.Equal(t, "2025-04-22", shortDate("2025-04-22T14:30:00Z")) |
| 357 | require.Equal(t, "", shortDate("")) |
| 358 | require.Equal(t, "", shortDate("not a date")) |
| 359 | } |
| 360 | |
| 361 | func TestDescribeFlakeUpdateFormats(t *testing.T) { |
| 362 | oldRev := "abc1234def56789012345678901234567890abcd" |
nothing calls this directly
no test coverage detected