track message costs

This commit is contained in:
Kenneth Kehl
2025-02-28 09:29:43 -08:00
parent c05ec18b11
commit 4846c96505

View File

@@ -131,7 +131,7 @@ def test_event_to_db_format_with_missing_fields():
"status": "UNKNOWN", "status": "UNKNOWN",
"delivery.phoneCarrier": "", "delivery.phoneCarrier": "",
"delivery.providerResponse": "", "delivery.providerResponse": "",
"delivery.priceInUSD": "0.0", "delivery.priceInUSD": 0.0,
"@timestamp": "", "@timestamp": "",
} }
@@ -154,6 +154,6 @@ def test_event_to_db_format_with_string_input():
"status": "FAILED", "status": "FAILED",
"delivery.phoneCarrier": "Verizon", "delivery.phoneCarrier": "Verizon",
"delivery.providerResponse": "Error", "delivery.providerResponse": "Error",
"delivery.priceInUSD": "0.00881", "delivery.priceInUSD": 0.00881,
"@timestamp": "2024-01-01T14:00:00Z", "@timestamp": "2024-01-01T14:00:00Z",
} }