diff --git a/apps/dokploy/__test__/compose/domain/labels.test.ts b/apps/dokploy/__test__/compose/domain/labels.test.ts index 2e0b50c13..684b83890 100644 --- a/apps/dokploy/__test__/compose/domain/labels.test.ts +++ b/apps/dokploy/__test__/compose/domain/labels.test.ts @@ -367,9 +367,7 @@ describe("createDomainLabels", () => { "custom", ); - const middlewareLabel = labels.find((l) => - l.includes(".middlewares="), - ); + const middlewareLabel = labels.find((l) => l.includes(".middlewares=")); // Should not contain redirect-to-https since there's only one router expect(middlewareLabel).toBeUndefined(); });