1diff --git a/tests/test_cmd.py b/tests/test_cmd.py
2index 02b5db8..578ebaa 100644
3--- a/tests/test_cmd.py
4+++ b/tests/test_cmd.py
5@@ -1,6 +1,7 @@
6-from llm.plugins import pm
7+from llm.plugins import load_plugins, pm
8
9
10 def test_plugin_is_installed():
11+ load_plugins()
12 names = [mod.__name__ for mod in pm.get_plugins()]
13 assert "llm_cmd" in names