From cb998aa7f9a4f8ee94989fc51efbad1bcb287db1 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 16 Feb 2026 06:27:19 +0000 Subject: [PATCH] test: remove duplicate systemd exec-start split assertion --- 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 b8988f84f..a7104cece 100644 --- a/src/daemon/systemd.test.ts +++ b/src/daemon/systemd.test.ts @@ -161,17 +161,6 @@ describe("splitArgsPreservingQuotes", () => { }); describe("parseSystemdExecStart", () => { - it("splits on whitespace outside quotes", () => { - const execStart = "/usr/bin/openclaw gateway start --foo bar"; - expect(parseSystemdExecStart(execStart)).toEqual([ - "/usr/bin/openclaw", - "gateway", - "start", - "--foo", - "bar", - ]); - }); - it("preserves quoted arguments", () => { const execStart = '/usr/bin/openclaw gateway start --name "My Bot"'; expect(parseSystemdExecStart(execStart)).toEqual([