Skip to content

Commit 96e9656

Browse files
committed
Fix linting error
1 parent b5c62d9 commit 96e9656

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/client/auth.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2380,7 +2380,9 @@ describe('OAuth Authorization', () => {
23802380
expect(result).toBe('REDIRECT');
23812381

23822382
// Verify we tried PRM discovery (with retry for CORS)
2383-
expect(mockFetch.mock.calls.filter(call => call[0].toString().includes('oauth-protected-resource')).length).toBeGreaterThan(0);
2383+
expect(mockFetch.mock.calls.filter(call => call[0].toString().includes('oauth-protected-resource')).length).toBeGreaterThan(
2384+
0
2385+
);
23842386

23852387
// Verify we eventually fell back to auth server metadata
23862388
expect(mockFetch.mock.calls.some(call => call[0].toString().includes('oauth-authorization-server'))).toBe(true);

0 commit comments

Comments
 (0)