mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 19:29:06 +01:00
[core] fix wrong order of message status flags in conversation headers
This commit is contained in:
@@ -77,7 +77,7 @@ internal class MessagingControllerImplTest : ControllerTest() {
|
||||
@Test
|
||||
fun listIntroductionRequest() {
|
||||
val request = IntroductionRequest(
|
||||
message.id, group.id, timestamp, true, true, false, true, sessionId, author, text,
|
||||
message.id, group.id, timestamp, true, true, true, false, sessionId, author, text,
|
||||
false, AuthorInfo(UNVERIFIED)
|
||||
)
|
||||
|
||||
@@ -217,7 +217,7 @@ internal class MessagingControllerImplTest : ControllerTest() {
|
||||
@Test
|
||||
fun testIntroductionRequestWithNullText() {
|
||||
val request = IntroductionRequest(
|
||||
message.id, group.id, timestamp, true, true, false, true, sessionId, author, null,
|
||||
message.id, group.id, timestamp, true, true, true, false, sessionId, author, null,
|
||||
false, AuthorInfo(VERIFIED)
|
||||
)
|
||||
val json = """
|
||||
|
||||
Reference in New Issue
Block a user