From 0e88ee928cbffbbd8261d9cd725630d221e6203e Mon Sep 17 00:00:00 2001 From: joshavant <830519+joshavant@users.noreply.github.com> Date: Fri, 13 Mar 2026 21:21:09 -0500 Subject: [PATCH] test: remove unused outbound adapter imports --- src/infra/outbound/deliver.test.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/infra/outbound/deliver.test.ts b/src/infra/outbound/deliver.test.ts index c7c43e098c6..242e8e8d2a3 100644 --- a/src/infra/outbound/deliver.test.ts +++ b/src/infra/outbound/deliver.test.ts @@ -1,8 +1,5 @@ import path from "node:path"; import { afterEach, beforeEach, describe, expect, it, vi } from "vitest"; -import { signalOutbound } from "../../channels/plugins/outbound/signal.js"; -import { telegramOutbound } from "../../channels/plugins/outbound/telegram.js"; -import { whatsappOutbound } from "../../channels/plugins/outbound/whatsapp.js"; import type { ChannelOutboundAdapter } from "../../channels/plugins/types.adapters.js"; import type { OpenClawConfig } from "../../config/config.js"; import { STATE_DIR } from "../../config/paths.js";