This commit is contained in:
2025-10-12 01:11:03 -03:00
parent 8d10f55ad2
commit 8c750e00d0
3 changed files with 4 additions and 4 deletions

View File

@@ -332,10 +332,10 @@ Resources:
old_image:
status: [IN_PROGRESS]
EventCertReportingAppendIssuedCertFunction:
EventCertReportingAppendCertFunction:
Type: AWS::Serverless::Function
Properties:
Handler: events.cert_reporting.append_issued_cert.lambda_handler
Handler: events.cert_reporting.append_cert.lambda_handler
LoggingConfig:
LogGroup: !Ref EventLog
Policies:

View File

@@ -1,6 +1,6 @@
from datetime import timedelta
import app.events.cert_reporting.append_issued_cert as app
import app.events.cert_reporting.append_cert as app
from aws_lambda_powertools.utilities.typing import LambdaContext
from layercake.dateutils import now
from layercake.dynamodb import (
@@ -10,7 +10,7 @@ from layercake.dynamodb import (
)
def test_append_issued_cert(
def test_append_cert(
seeds,
dynamodb_persistence_layer: DynamoDBPersistenceLayer,
lambda_context: LambdaContext,