From 4d248b887f39cb11920c3be1e3bb0d41a7b08496 Mon Sep 17 00:00:00 2001 From: pickaxe <54486432+ProspectOre@users.noreply.github.com> Date: Tue, 5 May 2026 02:52:50 -0700 Subject: [PATCH] test(plugins): remove unnecessary peer-link assertion --- src/plugins/update.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/update.test.ts b/src/plugins/update.test.ts index cc89b5a36d0..3357f1a66f6 100644 --- a/src/plugins/update.test.ts +++ b/src/plugins/update.test.ts @@ -286,7 +286,7 @@ function createOpenClawPeerLinkFixtures(plugins: Array<{ pluginId: string; packa ]), ); const peerLinkPath = (pluginId: string) => - path.join(installPaths[pluginId]!, "node_modules", "openclaw"); + path.join(installPaths[pluginId], "node_modules", "openclaw"); const linkPeer = (pluginId: string) => { fs.mkdirSync(path.dirname(peerLinkPath(pluginId)), { recursive: true }); fs.symlinkSync(peerTarget, peerLinkPath(pluginId), "junction");