Moves EmptyNostrClient to a class to avoid auto-import issues

This commit is contained in:
Vitor Pamplona
2026-03-22 15:14:49 -04:00
parent 2e1066a609
commit 439b392aa0
7 changed files with 10 additions and 12 deletions
@@ -34,7 +34,7 @@ class ConvertExceptionsTest {
NostrSignerRemote.fromBunkerUri(
"bunker://${"a".repeat(64)}?relay=wss://r.com",
NostrSignerInternal(KeyPair()),
EmptyNostrClient,
EmptyNostrClient(),
)
@Test
@@ -30,7 +30,7 @@ import kotlin.test.assertNull
class FromBunkerUriTest {
private val signer = NostrSignerInternal(KeyPair())
private val client = EmptyNostrClient
private val client = EmptyNostrClient()
private val validHex = "a".repeat(64)
@Test