mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-14 05:42:54 -07:00
Unused error variables in catch block are not allowed (#24487)
This commit is contained in:
@@ -51,7 +51,7 @@ describe('execStreaming (Integration)', () => {
|
||||
for await (const line of generator) {
|
||||
lines.push(line);
|
||||
}
|
||||
} catch (_e) {
|
||||
} catch {
|
||||
// ignore
|
||||
}
|
||||
return lines;
|
||||
|
||||
Reference in New Issue
Block a user