From 109851a926f02222cc3626e562accc9c90f71847 Mon Sep 17 00:00:00 2001 From: jesse-merhi <79823012+jesse-merhi@users.noreply.github.com> Date: Wed, 12 Aug 2026 03:01:13 +1000 Subject: [PATCH] test(plugins): align temp root helper --- src/plugins/install-shared.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/install-shared.test.ts b/src/plugins/install-shared.test.ts index 9f503884f4c1..92e4e1e94844 100644 --- a/src/plugins/install-shared.test.ts +++ b/src/plugins/install-shared.test.ts @@ -3,10 +3,10 @@ import path from "node:path"; import { afterAll, describe, expect, it } from "vitest"; import { installPluginDirectoryIntoExtensions } from "./install-shared.js"; import { PLUGIN_INSTALL_ERROR_CODE } from "./install-types.js"; -import { createSuiteTempRootTracker } from "./test-helpers/fs-fixtures.js"; +import { createSyncSuiteTempRootTracker } from "./test-helpers/fs-fixtures.js"; describe("installPluginDirectoryIntoExtensions", () => { - const tempRoots = createSuiteTempRootTracker("openclaw-install-shared"); + const tempRoots = createSyncSuiteTempRootTracker("openclaw-install-shared"); afterAll(() => tempRoots.cleanup());