Browse Source

test(garden): reduce heavy mcp describe/property usage limits

Lukas Goldschmidt 1 month ago
parent
commit
68f84aa71d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      test_garden_layer.py

+ 2 - 2
test_garden_layer.py

@@ -105,7 +105,7 @@ def call_mcp_tool(tool_name: str, payload: Dict[str, Any]) -> Any:
 def test_mcp_garden_describe_subject():
     result = call_mcp_tool(
         "garden_describe_subject",
-        {"subject_uri": KEROSENE_ROOT, "limit": 5},
+        {"subject_uri": KEROSENE_ROOT, "limit": 1},
     )
     bindings = result.get("results", {}).get("bindings", [])
     assert bindings, "garden_describe_subject should return bindings"
@@ -115,7 +115,7 @@ def test_mcp_garden_describe_subject():
 def test_mcp_garden_property_usage_statistics():
     result = call_mcp_tool(
         "garden_property_usage_statistics",
-        {"property_uri": CLONE_OF, "examples_limit": 2},
+        {"property_uri": CLONE_OF, "examples_limit": 1},
     )
     count_bindings = result.get("count", {}).get("results", {}).get("bindings", [])
     assert count_bindings, "Expected usage count bindings from the garden tool"