Skip to content

Commit 43e5d3c

Browse files
author
Armin Wiebigke
committed
Fix linting
1 parent 76e6da8 commit 43e5d3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/graphql-codegen-cli/tests/codegen.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -970,7 +970,7 @@ describe('Codegen Executor', () => {
970970
it('should load schema with custom fetch function', async () => {
971971
let fetchCalledFor = null;
972972

973-
async function myCustomFetch(url: string, options?: RequestInit): Promise<Response> {
973+
async function myCustomFetch(url: string, _options?: RequestInit): Promise<Response> {
974974
fetchCalledFor = url;
975975
return Promise.resolve(new Response());
976976
}

0 commit comments

Comments
 (0)