diff --git a/pkg/workflow/agentic_engine_test.go b/pkg/workflow/agentic_engine_test.go index acd1723565f..8933cccad0a 100644 --- a/pkg/workflow/agentic_engine_test.go +++ b/pkg/workflow/agentic_engine_test.go @@ -11,8 +11,8 @@ func TestEngineRegistry(t *testing.T) { // Test that built-in engines are registered supportedEngines := registry.GetSupportedEngines() - if len(supportedEngines) != 5 { - t.Errorf("Expected 5 supported engines, got %d", len(supportedEngines)) + if len(supportedEngines) != 4 { + t.Errorf("Expected 4 supported engines, got %d", len(supportedEngines)) } // Test getting engines by ID @@ -118,7 +118,7 @@ func TestEngineRegistryCustomEngine(t *testing.T) { // Test that supported engines list is updated supportedEngines := registry.GetSupportedEngines() - if len(supportedEngines) != 6 { - t.Errorf("Expected 6 supported engines after adding test-custom, got %d", len(supportedEngines)) + if len(supportedEngines) != 5 { + t.Errorf("Expected 5 supported engines after adding test-custom, got %d", len(supportedEngines)) } }