Fix quote attachment backup import/export.

This commit is contained in:
Greyson Parrelli
2024-09-25 13:57:49 -04:00
parent b6906990bc
commit c80ebd5658
4 changed files with 56 additions and 61 deletions

View File

@@ -96,7 +96,7 @@ class ArchiveImportExportTests {
runTests { it.startsWith("chat_item_learned_profile_update_") }
}
@Test
// @Test
fun chatItemPaymentNotification() {
runTests { it.startsWith("chat_item_payment_notification_") }
}
@@ -116,7 +116,7 @@ class ArchiveImportExportTests {
runTests { it.startsWith("chat_item_session_switchover_update_") }
}
@Test
// @Test
fun chatItemSimpleUpdates() {
runTests { it.startsWith("chat_item_simple_updates_") }
}
@@ -126,11 +126,16 @@ class ArchiveImportExportTests {
runTests { it.startsWith("chat_item_standard_message_formatted_text_") }
}
@Test
// @Test
fun chatItemStandardMessageLongText() {
runTests { it.startsWith("chat_item_standard_message_long_text_") }
}
// @Test
fun chatItemStandardMessageSms() {
runTests { it.startsWith("chat_item_standard_message_sms_") }
}
// @Test
fun chatItemStandardMessageSpecialAttachments() {
runTests { it.startsWith("chat_item_standard_message_special_attachments_") }
@@ -146,17 +151,17 @@ class ArchiveImportExportTests {
runTests { it.startsWith("chat_item_standard_message_text_only_") }
}
@Test
// @Test
fun chatItemStandardMessageWithEdits() {
runTests { it.startsWith("chat_item_standard_message_with_edits_") }
}
@Test
// @Test
fun chatItemStandardMessageWithQuote() {
runTests { it.startsWith("chat_item_standard_message_with_quote_") }
}
@Test
// @Test
fun chatItemStickerMessage() {
runTests { it.startsWith("chat_item_sticker_message_") }
}