fix: remove stale 'model' assertion from delegate_task schema test

The 'model' property was removed from DELEGATE_TASK_SCHEMA but the
test still asserted its presence, causing CI to fail.
This commit is contained in:
teknium1
2026-03-07 11:29:55 -08:00
parent 8c0f8baf32
commit 24f6a193e7

View File

@@ -56,7 +56,6 @@ class TestDelegateRequirements(unittest.TestCase):
self.assertIn("tasks", props)
self.assertIn("context", props)
self.assertIn("toolsets", props)
self.assertIn("model", props)
self.assertIn("max_iterations", props)
self.assertEqual(props["tasks"]["maxItems"], 3)