Skip to content

Commit

Permalink
fix lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
KSDaemon committed Nov 28, 2024
1 parent 60bb0bf commit e4bba5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cubejs-api-gateway/test/auth.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ describe('test authorization', () => {

const { app } = createApiGateway(handlerMock, loggerMock, {
playgroundAuthSecret,
checkAuth: async (req: Request, auth?: string) => {
checkAuth: async (_req: Request, _auth?: string) => {
throw new CubejsHandlerError(409, 'Error', 'Custom error');
}
});
Expand Down

0 comments on commit e4bba5b

Please sign in to comment.