1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

DROID-2290 Tech | Integrate MW 0.32.0 (#972)

This commit is contained in:
Konstantin Ivanov 2024-03-04 16:16:52 +01:00 committed by konstantiniiv
parent fcdfa3acbb
commit 066d5e8a95
2 changed files with 20 additions and 2 deletions

View file

@ -1,5 +1,5 @@
[versions]
middlewareVersion = "v0.32.0-rc11"
middlewareVersion = "v0.32.0"
kotlinVersion = '1.8.22'
androidxCoreVersion = "1.12.0"

View file

@ -500,7 +500,7 @@ class EditorFeaturedRelationsTest : EditorPresentationTestSetup() {
}
@Test
fun `should not render relation in featured relations if corresponding relation is hidden`() =
fun `should render relation in featured relations if corresponding relation is hidden`() =
runTest {
val title = MockTypicalDocumentFactory.title
@ -604,6 +604,24 @@ class EditorFeaturedRelationsTest : EditorPresentationTestSetup() {
featured = true,
format = Relation.Format.SHORT_TEXT,
system = false
),
ObjectRelationView.Default(
id = r2.id,
key = r2.key,
name = r2.name.orEmpty(),
value = value2,
featured = true,
format = Relation.Format.SHORT_TEXT,
system = false
),
ObjectRelationView.Default(
id = r3.id,
key = r3.key,
name = r3.name.orEmpty(),
value = value3,
featured = true,
format = Relation.Format.SHORT_TEXT,
system = false
)
)
),