From 0de74f93e38cef8dafcbc8a157abd1942d53ec02 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Fri, 15 May 2026 17:20:38 +0100 Subject: [PATCH] test(sqlite): align migrated store call sites --- src/gateway/server.roles-allowlist-update.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gateway/server.roles-allowlist-update.test.ts b/src/gateway/server.roles-allowlist-update.test.ts index 3f51116368e..c6c380967cd 100644 --- a/src/gateway/server.roles-allowlist-update.test.ts +++ b/src/gateway/server.roles-allowlist-update.test.ts @@ -733,7 +733,7 @@ describe("gateway node command allowlist", () => { os.tmpdir(), `openclaw-client-id-promotion-${Date.now()}-${Math.random().toString(36).slice(2)}.json`, ); - const deviceIdentity = loadOrCreateDeviceIdentity(deviceIdentityPath); + const deviceIdentity = loadOrCreateDeviceIdentity({ key: deviceIdentityPath }); const displayName = "node-client-id-promotion"; let macClient: GatewayClient | undefined; @@ -798,7 +798,7 @@ describe("gateway node command allowlist", () => { os.tmpdir(), `openclaw-node-host-platform-upgrade-${Date.now()}-${Math.random().toString(36).slice(2)}.json`, ); - const deviceIdentity = loadOrCreateDeviceIdentity(deviceIdentityPath); + const deviceIdentity = loadOrCreateDeviceIdentity({ key: deviceIdentityPath }); const displayName = "node-host-platform-upgrade"; let legacyClient: GatewayClient | undefined;