Skip to content

Commit c521710

Browse files
Lint
1 parent 8dfa643 commit c521710

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/client/auth.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ describe("OAuth Authorization", () => {
4848
let callCount = 0;
4949

5050
// Mock implementation that changes behavior based on call count
51-
mockFetch.mockImplementation((url, options) => {
51+
mockFetch.mockImplementation((_url, _options) => {
5252
callCount++;
5353

5454
if (callCount === 1) {
@@ -81,7 +81,7 @@ describe("OAuth Authorization", () => {
8181
let callCount = 0;
8282

8383
// Mock implementation that changes behavior based on call count
84-
mockFetch.mockImplementation((url, options) => {
84+
mockFetch.mockImplementation((_url, _options) => {
8585
callCount++;
8686

8787
if (callCount === 1) {

0 commit comments

Comments
 (0)