fix: 修复apk打包时的错误
This commit is contained in:
@@ -526,7 +526,7 @@ class CreateMemoryViewModelRecordingCoordinatorTest {
|
||||
}
|
||||
|
||||
private class FakeVoiceAttachmentDao : VoiceAttachmentDao {
|
||||
override suspend fun getByConversationId(conversationId: String) = emptyList()
|
||||
override suspend fun getByConversationId(conversationId: String): List<VoiceAttachment> = emptyList()
|
||||
override suspend fun getByConversationAndIndex(conversationId: String, index: Int) = null
|
||||
override suspend fun insert(attachment: VoiceAttachment) = Unit
|
||||
override suspend fun deleteByConversationId(conversationId: String) = Unit
|
||||
|
||||
@@ -324,7 +324,7 @@ class CreateMemoryViewModelWarmupTest {
|
||||
}
|
||||
|
||||
private class FakeVoiceAttachmentDao : VoiceAttachmentDao {
|
||||
override suspend fun getByConversationId(conversationId: String) = emptyList()
|
||||
override suspend fun getByConversationId(conversationId: String): List<VoiceAttachment> = emptyList()
|
||||
override suspend fun getByConversationAndIndex(conversationId: String, index: Int) = null
|
||||
override suspend fun insert(attachment: VoiceAttachment) = Unit
|
||||
override suspend fun deleteByConversationId(conversationId: String) = Unit
|
||||
|
||||
Reference in New Issue
Block a user