summaryrefslogtreecommitdiff
path: root/spec/test_profiles.lua
diff options
context:
space:
mode:
Diffstat (limited to 'spec/test_profiles.lua')
-rw-r--r--spec/test_profiles.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/test_profiles.lua b/spec/test_profiles.lua
index f2a54a2..680679f 100644
--- a/spec/test_profiles.lua
+++ b/spec/test_profiles.lua
@@ -4,7 +4,7 @@
-- real config, by passing explicit roots to `discover` — the same seam the
-- extension uses for the user and project layers, in the same order.
--
--- Needs luv (the recursive walk) and lyaml (the frontmatter); without either the
+-- Needs luv (the recursive walk) and tinyyaml (the frontmatter); without either the
-- whole file skips rather than asserting on a degraded parse.
local profiles = require("subagents.profiles")
@@ -22,8 +22,8 @@ local function discover_fixture()
if not ok_uv then
return nil, "luv is not installed"
end
- if not pcall(require, "lyaml") then
- return nil, "lyaml is not installed"
+ if not pcall(require, "tinyyaml") then
+ return nil, "tinyyaml is not installed"
end
local tmp = assert(uv.fs_mkdtemp("/tmp/panto-subagents-profiles-XXXXXX"))