test(sqlite): align migrated store call sites

This commit is contained in:
Peter Steinberger
2026-05-15 17:20:38 +01:00
parent c965d7ec74
commit 0de74f93e3

View File

@@ -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;