Skip to content

Commit

Permalink
Fix unit test after merge from main
Browse files Browse the repository at this point in the history
  • Loading branch information
rohitprasad15 committed Oct 3, 2024
1 parent a49c100 commit 34c1af0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/client/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def test_client_chat_completions(
"region": "us-west4",
"application_credentials": "test_google_application_credentials",
},
ProviderNames.FIREWORKS: {
"fireworks": {
"api_key": "fireworks-api-key",
},
}
Expand Down Expand Up @@ -127,7 +127,7 @@ def test_client_chat_completions(
mock_google.assert_called_once()

# Test Fireworks model
fireworks_model = ProviderNames.FIREWORKS + ":" + "fireworks-model"
fireworks_model = "fireworks" + ":" + "fireworks-model"
fireworks_response = client.chat.completions.create(
fireworks_model, messages=messages
)
Expand Down

0 comments on commit 34c1af0

Please sign in to comment.