test(channels): use direct contract helper imports

This commit is contained in:
Vincent Koc
2026-04-03 22:46:51 +09:00
parent 4798e125f4
commit 3b358414d3
2 changed files with 2 additions and 2 deletions

View File

@@ -5,8 +5,8 @@ import type { MessageEvent, PostbackEvent } from "@line/bot-sdk";
import type { OpenClawConfig } from "openclaw/plugin-sdk/config-runtime";
import { getSessionBindingService } from "openclaw/plugin-sdk/conversation-runtime";
import { __testing as sessionBindingTesting } from "openclaw/plugin-sdk/conversation-runtime";
import { setDefaultChannelPluginRegistryForTests } from "openclaw/plugin-sdk/testing";
import { afterEach, beforeEach, describe, expect, it } from "vitest";
import { setDefaultChannelPluginRegistryForTests } from "../../../src/commands/channel-test-helpers.js";
import { buildLineMessageContext, buildLinePostbackContext } from "./bot-message-context.js";
import { linePlugin } from "./channel.js";
import type { ResolvedLineAccount } from "./types.js";