From 0d9f390cd90f243e5b47446990216f7d6aa8cc30 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Thu, 12 Mar 2026 19:44:51 -0400 Subject: [PATCH] missing tests fix --- .../vitorpamplona/amethyst/commons/richtext/UrlParserTest.kt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/commons/src/commonTest/kotlin/com/vitorpamplona/amethyst/commons/richtext/UrlParserTest.kt b/commons/src/commonTest/kotlin/com/vitorpamplona/amethyst/commons/richtext/UrlParserTest.kt index 9fb2ef84a..b9613c5cd 100644 --- a/commons/src/commonTest/kotlin/com/vitorpamplona/amethyst/commons/richtext/UrlParserTest.kt +++ b/commons/src/commonTest/kotlin/com/vitorpamplona/amethyst/commons/richtext/UrlParserTest.kt @@ -34,6 +34,9 @@ class UrlParserTest { assertEquals(expected.withScheme, urlSet.withScheme) assertEquals(expected.withoutScheme, urlSet.withoutScheme) assertEquals(expected.emails, urlSet.emails) + assertEquals(expected.bech32s, urlSet.bech32s) + assertEquals(expected.blossomUris, urlSet.blossomUris) + assertEquals(expected.relayUrls, urlSet.relayUrls) } @Test