You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try to format duration of 60 seconds or less it gives me empty string regardless of locale.
val seconds = 30L
val locale = Locale("en", "US")
val t = PrettyTime(Date(1000 * seconds), locale)
.calculatePreciseDuration(Date(0))
val result = PrettyTime(locale).formatDurationUnrounded(t)
assertThat(result).isEqualTo("30 seconds")
The text was updated successfully, but these errors were encountered:
When I try to format duration of 60 seconds or less it gives me empty string regardless of locale.
The text was updated successfully, but these errors were encountered: