Skip to content

Commit 3c152d2

Browse files
committed
CCM-10422: fix assert
1 parent cad1232 commit 3c152d2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

infrastructure/terraform/modules/backend-api/module_lambda_request_proof.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ data "aws_iam_policy_document" "request_proof_lambda_policy" {
4747
aws_dynamodb_table.templates.arn,
4848
]
4949
}
50+
5051
statement {
5152
sid = "AllowProofingSQS"
5253
effect = "Allow"

utils/utils/src/__tests__/lambda-cognito-authorizer.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ describe('LambdaCognitoAuthorizer', () => {
397397
expect(mockLogger.logMessages).toContainEqual(
398398
expect.objectContaining({
399399
level: 'warn',
400-
message: 'Neither subject nor clientId matches expected resource owner',
400+
message: 'clientId does not match expected resource owner',
401401
})
402402
);
403403
});

0 commit comments

Comments
 (0)