Skip to content

Commit 64b6caf

Browse files
committed
test(android): update gateway hello callback fixtures
1 parent 98f2e56 commit 64b6caf

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

apps/android/app/src/test/java/ai/openclaw/app/gateway/GatewaySessionInvokeTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,7 @@ class GatewaySessionInvokeTest {
642642
scope = CoroutineScope(sessionJob + Dispatchers.Default),
643643
identityStore = DeviceIdentityStore(app),
644644
deviceAuthStore = deviceAuthStore,
645-
onConnected = { _, _, _ ->
645+
onConnected = {
646646
if (!connected.isCompleted) connected.complete(Unit)
647647
},
648648
onDisconnected = { message ->

apps/android/app/src/test/java/ai/openclaw/app/gateway/GatewaySessionReconnectTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ class GatewaySessionReconnectTest {
241241
scope = CoroutineScope(sessionJob + Dispatchers.Default),
242242
identityStore = DeviceIdentityStore(app),
243243
deviceAuthStore = ReconnectDeviceAuthStore(),
244-
onConnected = { _, _, _ -> },
244+
onConnected = {},
245245
onDisconnected = { _ -> },
246246
onEvent = { _, _ -> },
247247
onInvoke = { GatewaySession.InvokeResult.ok("""{"handled":true}""") },

apps/android/app/src/test/java/ai/openclaw/app/voice/TalkModeManagerTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ class TalkModeManagerTest {
256256
scope = CoroutineScope(sessionJob + Dispatchers.Default),
257257
identityStore = DeviceIdentityStore(app),
258258
deviceAuthStore = InMemoryDeviceAuthStore(),
259-
onConnected = { _, _, _ -> },
259+
onConnected = {},
260260
onDisconnected = {},
261261
onEvent = { _, _ -> },
262262
)

0 commit comments

Comments
 (0)