From 4846c965052d1f3866b27b70887aecff393a78ae Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Fri, 28 Feb 2025 09:29:43 -0800 Subject: [PATCH] track message costs --- tests/app/clients/test_aws_cloudwatch.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/app/clients/test_aws_cloudwatch.py b/tests/app/clients/test_aws_cloudwatch.py index 2d00c1362..36de2c1b1 100644 --- a/tests/app/clients/test_aws_cloudwatch.py +++ b/tests/app/clients/test_aws_cloudwatch.py @@ -131,7 +131,7 @@ def test_event_to_db_format_with_missing_fields(): "status": "UNKNOWN", "delivery.phoneCarrier": "", "delivery.providerResponse": "", - "delivery.priceInUSD": "0.0", + "delivery.priceInUSD": 0.0, "@timestamp": "", } @@ -154,6 +154,6 @@ def test_event_to_db_format_with_string_input(): "status": "FAILED", "delivery.phoneCarrier": "Verizon", "delivery.providerResponse": "Error", - "delivery.priceInUSD": "0.00881", + "delivery.priceInUSD": 0.00881, "@timestamp": "2024-01-01T14:00:00Z", }