Skip to content

Commit 7699175

Browse files
committed
test(active-memory): remove stale register awaits
1 parent a478889 commit 7699175

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

extensions/active-memory/index.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,7 @@ describe("active-memory plugin", () => {
567567
agents: ["main"],
568568
allowedChatTypes: ["explicit"],
569569
};
570-
await plugin.register(api as unknown as OpenClawPluginApi);
570+
plugin.register(api as unknown as OpenClawPluginApi);
571571

572572
const result = await hooks.before_prompt_build(
573573
{ prompt: "what should i work on next?", messages: [] },
@@ -591,7 +591,7 @@ describe("active-memory plugin", () => {
591591
agents: ["main"],
592592
allowedChatTypes: ["explicit"],
593593
};
594-
await plugin.register(api as unknown as OpenClawPluginApi);
594+
plugin.register(api as unknown as OpenClawPluginApi);
595595

596596
const result = await hooks.before_prompt_build(
597597
{ prompt: "what should i work on next?", messages: [] },

0 commit comments

Comments
 (0)