Enable detekt rules AlsoCouldBeApply and fix existing issues.
This commit is contained in:
committed by
Benoit Marty
parent
1d3aa2cd05
commit
d433c3cbaa
@@ -101,7 +101,7 @@ class DefaultLastMessageTimestampFormatterTest {
|
||||
* Create DefaultLastMessageFormatter and set current time to the provided date.
|
||||
*/
|
||||
private fun createFormatter(@Suppress("SameParameterValue") currentDate: String): LastMessageTimestampFormatter {
|
||||
val clock = FakeClock().also { it.givenInstant(Instant.parse(currentDate)) }
|
||||
val clock = FakeClock().apply { givenInstant(Instant.parse(currentDate)) }
|
||||
val localDateTimeProvider = LocalDateTimeProvider(clock, TimeZone.UTC)
|
||||
val dateFormatters = DateFormatters(Locale.US, clock, TimeZone.UTC)
|
||||
return DefaultLastMessageTimestampFormatter(localDateTimeProvider, dateFormatters)
|
||||
|
||||
Reference in New Issue
Block a user