Skip to content

Commit c84d417

Browse files
committed
fix test
1 parent 372ee0f commit c84d417

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

shared/src/commonTest/kotlin/dev/dimension/flare/common/deeplink/DeepLinkMappingTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ class DeepLinkMappingTest {
9393
)
9494

9595
val post = patterns[1]
96-
assertEquals(DeepLinkMapping.Type.Post.serializer(), post.serializer)
96+
assertEquals(DeepLinkMapping.Type.BlueskyPost.serializer(), post.serializer)
9797
assertEquals(Url("https://$host/profile/{handle}/post/{id}"), post.uriPattern)
9898
assertEquals(
9999
listOf("profile" to false, "handle" to true, "post" to false, "id" to true),
@@ -337,7 +337,7 @@ class DeepLinkMappingTest {
337337
mapping,
338338
)
339339
assertEquals(
340-
DeepLinkMapping.Type.Post("alice.bsky.social", "12345"),
340+
DeepLinkMapping.Type.BlueskyPost("alice.bsky.social", "12345"),
341341
bskyPostMatch[bskyAccount],
342342
)
343343

0 commit comments

Comments
 (0)