chore: remaining cleanup changes

This commit is contained in:
2026-04-16 08:20:00 +02:00
parent 853c644446
commit 8feaaa2845
11 changed files with 25 additions and 25 deletions

View File

@@ -12,17 +12,14 @@ let
}
);
in
assert result.success == false;
{result = "pass";};
assert result.success == false; {result = "pass";};
# Test 2: loadCanonical extracts loadAgents from input
testLoadCanonical = let
fakeInput = {lib.loadAgents = {test = {description = "test";};};};
result = agentsLib.loadCanonical {agentsInput = fakeInput;};
in
assert result == {test = {description = "test";};};
{result = "pass";};
assert result == {test = {description = "test";};}; {result = "pass";};
in {
unknown-tool-throws = testUnknownTool;
load-canonical = testLoadCanonical;