From dab0e57914dfb70544ec83dcf967e5bb7ddd5621 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Tue, 28 Apr 2026 03:47:45 +0100 Subject: [PATCH] style: format sdk helper imports --- test/cli-json-stdout.e2e.test.ts | 2 +- test/official-channel-catalog.test.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/test/cli-json-stdout.e2e.test.ts b/test/cli-json-stdout.e2e.test.ts index 5a1d8a9d239..2f97605d700 100644 --- a/test/cli-json-stdout.e2e.test.ts +++ b/test/cli-json-stdout.e2e.test.ts @@ -1,8 +1,8 @@ import { spawnSync } from "node:child_process"; import fs from "node:fs/promises"; import path from "node:path"; -import { describe, expect, it } from "vitest"; import { withTempHome } from "openclaw/plugin-sdk/test-env"; +import { describe, expect, it } from "vitest"; describe("cli json stdout contract", () => { it("keeps `update status --json` stdout parseable even with legacy doctor preflight inputs", async () => { diff --git a/test/official-channel-catalog.test.ts b/test/official-channel-catalog.test.ts index 7e050914ccd..4c0808fa385 100644 --- a/test/official-channel-catalog.test.ts +++ b/test/official-channel-catalog.test.ts @@ -7,7 +7,6 @@ import { OFFICIAL_CHANNEL_CATALOG_RELATIVE_PATH, writeOfficialChannelCatalog, } from "../scripts/write-official-channel-catalog.mjs"; -import { bundledPluginRoot } from "openclaw/plugin-sdk/test-fixtures"; import { describePluginInstallSource } from "../src/plugins/install-source-info.js"; import { cleanupTempDirs, makeTempRepoRoot, writeJsonFile } from "./helpers/temp-repo.js";