Loading
fix: validate notifiedAt against the with-millis date format
Brokers send notifiedAt as ISO-8601 with millisecond precision (e.g.
'2026-05-04T13:31:05.403Z') — the file already defines
${date_format_with_millis} for exactly this case but 'Wait for
notification and validate it' validates against ${date_format} (no
millis), so 'Is Date' returns False and every CSR-subscription
notification test (047_*) fails after the type check passes.
Switch the validator to ${date_format_with_millis} which matches
what brokers actually emit.