chore: Fix lint.

This commit is contained in:
cpojer
2026-02-09 09:55:48 +09:00
parent 0497bb0544
commit 6614c3f932
5 changed files with 22 additions and 8 deletions

View File

@@ -103,7 +103,7 @@ describe("acquireSessionWriteLock", () => {
});
it("cleans up locks on SIGINT without removing other handlers", async () => {
const root = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-lock-"));
const originalKill = process.kill.bind(process) as typeof process.kill;
const originalKill = process.kill.bind(process);
const killCalls: Array<NodeJS.Signals | undefined> = [];
let otherHandlerCalled = false;