Skip to content

Commit 9d51ed7

Browse files
committed
cleanup
1 parent b64359c commit 9d51ed7

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

lambdas/backend-api/src/__tests__/templates/app/template-client.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1764,7 +1764,6 @@ describe('templateClient', () => {
17641764
});
17651765

17661766
const result = await templateClient.requestProof(templateId, user);
1767-
console.log(result);
17681767

17691768
expect(mocks.templateRepository.proofRequestUpdate).toHaveBeenCalledWith(
17701769
templateId,

lambdas/sftp-letters/src/app/poll.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ export class App {
103103
sftpClient,
104104
`${baseSftpPath}/${expandedTemplateId}/${proofFile.name}`,
105105
`${baseS3Path}/${templateId}/${proofFile.name}`,
106-
logger
106+
idLogger
107107
);
108108
} else {
109109
idLogger.info('Unexpected item found', { proofFile });

tests/test-team/helpers/auth/cognito-auth-helper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ export class CognitoAuthHelper {
161161
const userCtx = await CognitoAuthHelper.authContextFile.get(this.runId, id);
162162

163163
if (!userCtx) {
164-
throw new Error('UserWithOptionalClient not found');
164+
throw new Error('User not found');
165165
}
166166

167167
const { runId } = this;

utils/entity-update-command-builder/src/__tests__/template-update-builder.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ describe('TemplateUpdateBuilder', () => {
333333
});
334334

335335
describe('expectedClientId', () => {
336-
test('adds templateType condition', () => {
336+
test('adds clientId condition', () => {
337337
const builder = new TemplateUpdateBuilder(
338338
mockTableName,
339339
mockOwner,

0 commit comments

Comments
 (0)