Skip to content

Commit

Permalink
[tests][messages] add skipPhoneValidation to constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
capcom6 committed Feb 26, 2024
1 parent 2f41f01 commit c7c8340
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ class MessageWithRecipientsTest {
isEncrypted = false,
source = MessageSource.Local,
state = Message.State.Pending,
createdAt = System.currentTimeMillis()
createdAt = System.currentTimeMillis(),
skipPhoneValidation = true,
)
val recipients = listOf(
MessageRecipient("1", "1234567890", Message.State.Pending, null),
Expand All @@ -38,7 +39,8 @@ class MessageWithRecipientsTest {
isEncrypted = false,
source = MessageSource.Local,
state = Message.State.Pending,
createdAt = System.currentTimeMillis()
createdAt = System.currentTimeMillis(),
skipPhoneValidation = true,
)
val recipients = listOf(
MessageRecipient("1", "1234567890", Message.State.Delivered, null),
Expand All @@ -60,7 +62,8 @@ class MessageWithRecipientsTest {
isEncrypted = false,
source = MessageSource.Local,
state = Message.State.Pending,
createdAt = System.currentTimeMillis()
createdAt = System.currentTimeMillis(),
skipPhoneValidation = true,
)
val recipients = listOf(
MessageRecipient("2", "1234567890", Message.State.Delivered, null),
Expand Down

0 comments on commit c7c8340

Please sign in to comment.