test: update schema assertion after maxItems removal

This commit is contained in:
Teknium 2026-04-10 13:10:27 -07:00 committed by Teknium
parent 7ccdb74364
commit 363d5d57be

View file

@ -67,7 +67,7 @@ class TestDelegateRequirements(unittest.TestCase):
self.assertIn("context", props)
self.assertIn("toolsets", props)
self.assertIn("max_iterations", props)
self.assertEqual(props["tasks"]["maxItems"], 3)
self.assertNotIn("maxItems", props["tasks"]) # removed — limit is now runtime-configurable
class TestChildSystemPrompt(unittest.TestCase):