From da2bdbef7e16aae07c86dd74bb117b8035b03bbd Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 16 Feb 2026 06:21:13 +0000 Subject: [PATCH] test: remove duplicate systemd exec-start split case --- src/daemon/systemd.test.ts | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/daemon/systemd.test.ts b/src/daemon/systemd.test.ts index a5be470af..80cdc43fd 100644 --- a/src/daemon/systemd.test.ts +++ b/src/daemon/systemd.test.ts @@ -189,15 +189,4 @@ describe("parseSystemdExecStart", () => { "My Bot", ]); }); - - it("parses path arguments", () => { - const execStart = "/usr/bin/openclaw gateway start --path /tmp/openclaw"; - expect(parseSystemdExecStart(execStart)).toEqual([ - "/usr/bin/openclaw", - "gateway", - "start", - "--path", - "/tmp/openclaw", - ]); - }); });