From 863d563beb21325eeb080906b48fe3c3f48bcc98 Mon Sep 17 00:00:00 2001 From: "Leah E. Cole" <6719667+leahecole@users.noreply.github.com> Date: Tue, 28 May 2024 10:37:35 -0400 Subject: [PATCH] fix: fix lint warning (#1608) --- gax/test/test-application/src/index.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/gax/test/test-application/src/index.ts b/gax/test/test-application/src/index.ts index 1d319c9a4..c83a733f3 100644 --- a/gax/test/test-application/src/index.ts +++ b/gax/test/test-application/src/index.ts @@ -1154,7 +1154,6 @@ async function testServerStreamingThrowsCannotSetTotalTimeoutMillisMaxRetries( // The test should not retry when the max retries are set to 0 // and the emitted error should bubble up to the user when it does not retry. async function testErrorMaxRetries0(client: SequenceServiceClient) { - const finalData: string[] = []; const shouldRetryFn = (error: GoogleError) => { return [4].includes(error!.code!); };