fix: update provider count in migration test to include Avian
The TestConvertProvidersToModelList_AllProviders test expected 19 providers but adding Avian brings the total to 20. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
a4546ffb8f
commit
0c97cb30d8
1 changed files with 3 additions and 3 deletions
|
|
@ -166,9 +166,9 @@ func TestConvertProvidersToModelList_AllProviders(t *testing.T) {
|
|||
|
||||
result := ConvertProvidersToModelList(cfg)
|
||||
|
||||
// All 19 providers should be converted
|
||||
if len(result) != 19 {
|
||||
t.Errorf("len(result) = %d, want 19", len(result))
|
||||
// All 20 providers should be converted
|
||||
if len(result) != 20 {
|
||||
t.Errorf("len(result) = %d, want 20", len(result))
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue