Skip to content

Commit

Permalink
fix: cosmetics
Browse files Browse the repository at this point in the history
  • Loading branch information
msagi committed Apr 27, 2024
1 parent 4c6aab5 commit 7e639ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/git-proxy-cli/test/testCli.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ describe('test git-proxy-cli', function () {
it('attempt to authorise should fail when not authenticated (server restarted)', async function () {
try {
await helper.createCookiesFileWithExpiredCookie();
await helper.startServer(service);
await helper.startServer(service);
const id = pushId;
const cli = `npx -- @finos/git-proxy-cli authorise --id ${id}`;
const expectedExitCode = 3;
Expand Down Expand Up @@ -381,7 +381,7 @@ describe('test git-proxy-cli', function () {
} finally {
await helper.closeServer(service.httpServer);
}
});
});
});

// *** cancel ***
Expand Down
2 changes: 1 addition & 1 deletion src/service/routes/push.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ router.post('/:id/reject', async (req, res) => {

router.post('/:id/authorise', async (req, res) => {
console.log({ req });

const questions = req.body.params?.attestation;
console.log({ questions });

Expand Down

0 comments on commit 7e639ae

Please sign in to comment.