From 1977f0bb34e3896fa5447e97515a5a55ed78dff0 Mon Sep 17 00:00:00 2001 From: Dionysis Grigoropoulos Date: Wed, 8 Jan 2025 16:59:44 +0200 Subject: [PATCH] fix: Fix failing test after https://github.com/simonw/llm/issues/626 --- tests/test_cmd.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_cmd.py b/tests/test_cmd.py index 02b5db8..578ebaa 100644 --- a/tests/test_cmd.py +++ b/tests/test_cmd.py @@ -1,6 +1,7 @@ -from llm.plugins import pm +from llm.plugins import load_plugins, pm def test_plugin_is_installed(): + load_plugins() names = [mod.__name__ for mod in pm.get_plugins()] assert "llm_cmd" in names