Skip to content

Commit

Permalink
Fix the lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeffwan committed Feb 14, 2025
1 parent 2e47f9f commit 23d1a8f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/e2e/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ func TestBaseModelInferenceFailures(t *testing.T) {
var client *openai.Client
if tc.routingStrategy != "" {
var dst *http.Response
client = createOpenAIClientWithRoutingStrategy(baseURL, tc.apiKey, tc.routingStrategy, option.WithResponseInto(&dst))
client = createOpenAIClientWithRoutingStrategy(baseURL, tc.apiKey,
tc.routingStrategy, option.WithResponseInto(&dst))
} else {
client = createOpenAIClient(baseURL, tc.apiKey)
}
Expand Down

0 comments on commit 23d1a8f

Please sign in to comment.