diff --git a/test/e2e/e2e_test.go b/test/e2e/e2e_test.go index f5a7cc5a..e29811c0 100644 --- a/test/e2e/e2e_test.go +++ b/test/e2e/e2e_test.go @@ -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) }