From fbd84b9b0dc43442f74a6d7bc41fc21f45231d2c Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 05:07:24 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- .../__test__/compose/compose-command-injection.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/dokploy/__test__/compose/compose-command-injection.test.ts b/apps/dokploy/__test__/compose/compose-command-injection.test.ts index 2ef184df4..372a6fc59 100644 --- a/apps/dokploy/__test__/compose/compose-command-injection.test.ts +++ b/apps/dokploy/__test__/compose/compose-command-injection.test.ts @@ -76,9 +76,9 @@ describe("compose createCommand injection", () => { "up $(touch x)", "up `id`", ]) { - expect(() => - createCommand({ ...base, command: bad } as any), - ).toThrow(/Invalid characters/); + expect(() => createCommand({ ...base, command: bad } as any)).toThrow( + /Invalid characters/, + ); } });