From 23d1a8f9cd3feac8624c6453604ad8726d5e21d1 Mon Sep 17 00:00:00 2001 From: Jiaxin Shan Date: Thu, 13 Feb 2025 16:47:58 -0800 Subject: [PATCH] Fix the lint issue --- test/e2e/e2e_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) }