From 24f6a193e7273a985ad8d0f161a0e9dfe5f45067 Mon Sep 17 00:00:00 2001 From: teknium1 Date: Sat, 7 Mar 2026 11:29:55 -0800 Subject: [PATCH] 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. --- tests/tools/test_delegate.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/tools/test_delegate.py b/tests/tools/test_delegate.py index 948af4d0f..aea7b127c 100644 --- a/tests/tools/test_delegate.py +++ b/tests/tools/test_delegate.py @@ -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)