Skip to content

Commit f7b7328

Browse files
committed
Fix wrong expiration default that was breaking tests
1 parent 6052d45 commit f7b7328

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

features/call/test/src/main/kotlin/io/element/android/features/call/test/CallNotificationData.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ fun aCallNotificationData(
3030
avatarUrl: String? = AN_AVATAR_URL,
3131
notificationChannelId: String = "channel_id",
3232
timestamp: Long = 0L,
33-
expirationTimestamp: Long = 0L,
33+
expirationTimestamp: Long = 30_000L,
3434
textContent: String? = null,
3535
): CallNotificationData = CallNotificationData(
3636
sessionId = sessionId,

0 commit comments

Comments
 (0)