test(android): update gateway hello callback fixtures

This commit is contained in:
Ayaan Zaidi
2026-05-20 08:53:12 +05:30
parent 98f2e568b3
commit 64b6cafcaa
3 changed files with 3 additions and 3 deletions

View File

@@ -642,7 +642,7 @@ class GatewaySessionInvokeTest {
scope = CoroutineScope(sessionJob + Dispatchers.Default),
identityStore = DeviceIdentityStore(app),
deviceAuthStore = deviceAuthStore,
onConnected = { _, _, _ ->
onConnected = {
if (!connected.isCompleted) connected.complete(Unit)
},
onDisconnected = { message ->

View File

@@ -241,7 +241,7 @@ class GatewaySessionReconnectTest {
scope = CoroutineScope(sessionJob + Dispatchers.Default),
identityStore = DeviceIdentityStore(app),
deviceAuthStore = ReconnectDeviceAuthStore(),
onConnected = { _, _, _ -> },
onConnected = {},
onDisconnected = { _ -> },
onEvent = { _, _ -> },
onInvoke = { GatewaySession.InvokeResult.ok("""{"handled":true}""") },

View File

@@ -256,7 +256,7 @@ class TalkModeManagerTest {
scope = CoroutineScope(sessionJob + Dispatchers.Default),
identityStore = DeviceIdentityStore(app),
deviceAuthStore = InMemoryDeviceAuthStore(),
onConnected = { _, _, _ -> },
onConnected = {},
onDisconnected = {},
onEvent = { _, _ -> },
)