From c9817da45b57da72f520c3bd4ae14cc0ec8fe993 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Tue, 14 Jul 2026 17:37:53 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- apps/dokploy/__test__/logs/log-classification.test.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/dokploy/__test__/logs/log-classification.test.ts b/apps/dokploy/__test__/logs/log-classification.test.ts index 92689558a..6f04f491a 100644 --- a/apps/dokploy/__test__/logs/log-classification.test.ts +++ b/apps/dokploy/__test__/logs/log-classification.test.ts @@ -2,9 +2,7 @@ import { getLogType } from "@/components/dashboard/docker/logs/utils"; import { expect, test } from "vitest"; test("classifies real failures as error", () => { - expect(getLogType("Error: connection refused at db:5432").type).toBe( - "error", - ); + expect(getLogType("Error: connection refused at db:5432").type).toBe("error"); expect(getLogType("[ERROR] something went wrong").type).toBe("error"); expect(getLogType("Deployment failed").type).toBe("error"); expect(