Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions pkg/workflow/agentic_engine_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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))
}
}