From 4e849f460bc8ccc93f70d5dd7b78b58e052c5e50 Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Mon, 27 Nov 2023 17:17:10 +0100 Subject: [PATCH] Fix: This number should be separated by underscores in order to increase readability --- .../notifications/factories/NotificationCreatorTest.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libraries/push/impl/src/test/kotlin/io/element/android/libraries/push/impl/notifications/factories/NotificationCreatorTest.kt b/libraries/push/impl/src/test/kotlin/io/element/android/libraries/push/impl/notifications/factories/NotificationCreatorTest.kt index 18d1fb723b..edf87fcd1a 100644 --- a/libraries/push/impl/src/test/kotlin/io/element/android/libraries/push/impl/notifications/factories/NotificationCreatorTest.kt +++ b/libraries/push/impl/src/test/kotlin/io/element/android/libraries/push/impl/notifications/factories/NotificationCreatorTest.kt @@ -188,7 +188,7 @@ class NotificationCreatorTest { style = null, compatSummary = "compatSummary", noisy = false, - lastMessageTimestamp = 123456L, + lastMessageTimestamp = 123_456L, ) result.commonAssertions( expectedGroup = matrixUser.userId.value, @@ -204,7 +204,7 @@ class NotificationCreatorTest { style = null, compatSummary = "compatSummary", noisy = true, - lastMessageTimestamp = 123456L, + lastMessageTimestamp = 123_456L, ) result.commonAssertions( expectedGroup = matrixUser.userId.value, @@ -233,7 +233,7 @@ class NotificationCreatorTest { ), threadId = null, largeIcon = null, - lastMessageTimestamp = 123456L, + lastMessageTimestamp = 123_456L, tickerText = "tickerText", ) result.commonAssertions() @@ -261,7 +261,7 @@ class NotificationCreatorTest { ), threadId = A_THREAD_ID, largeIcon = null, - lastMessageTimestamp = 123456L, + lastMessageTimestamp = 123_456L, tickerText = "tickerText", ) result.commonAssertions()