View | Details | Raw Unified | Return to bug 29403
Collapse All | Expand All

(-)a/t/DateUtils.t (-2 / +1 lines)
Lines 143-149 eval { Link Here
143
like( $@, qr/.*does not match the date format \(rfc3339\).*/, 'dt_from_string should die when passed a bad rfc3339 date string' );
143
like( $@, qr/.*does not match the date format \(rfc3339\).*/, 'dt_from_string should die when passed a bad rfc3339 date string' );
144
144
145
eval {
145
eval {
146
    $dt0 = dt_from_string('2021-11-03T10:16:59+00:00', 'iso');
146
    $dt0 = dt_from_string('2021-11-03T10:16:59Z+00:00', 'iso');
147
};
147
};
148
like( $@, qr/.*does not match the date format \(iso\).*/, 'dt_from_string should die when passed a bad iso date string' );
148
like( $@, qr/.*does not match the date format \(iso\).*/, 'dt_from_string should die when passed a bad iso date string' );
149
149
150
- 

Return to bug 29403