From 8a043dcc5cd587edc2da2a576e9839aef2d3d90d Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Sun, 5 Apr 2026 19:04:17 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- apps/dokploy/__test__/deploy/github.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/dokploy/__test__/deploy/github.test.ts b/apps/dokploy/__test__/deploy/github.test.ts index 9319f27d6..104e108f1 100644 --- a/apps/dokploy/__test__/deploy/github.test.ts +++ b/apps/dokploy/__test__/deploy/github.test.ts @@ -427,9 +427,9 @@ describe("Docker Image Name and Tag Extraction", () => { it("should extract tag from registry with port and tag", () => { expect(extractImageTag("registry:5000/image:tag")).toBe("tag"); - expect( - extractImageTag("registry.example.com:5000/myimage:v2.0"), - ).toBe("v2.0"); + expect(extractImageTag("registry.example.com:5000/myimage:v2.0")).toBe( + "v2.0", + ); expect(extractImageTag("localhost:5000/app:sha-abc123")).toBe( "sha-abc123", );