Fix truncated time zone specifier tests for ParseRFC822Date()

Correction to the commit:
2153ffc (Test ParseRFC822Date() with truncated time zone specifiers,
2022-03-19)

The inputs failed as expected, but due to an unrelated reason (missing
comma).
This commit is contained in:
Lauri Nurmi
2022-03-22 19:09:23 +02:00
parent 6a3ccabf11
commit 89eec3cb80
+2 -2
View File
@@ -1160,13 +1160,13 @@ void DateTimeTestCase::TestParseRFC822()
},
{
"Sun 01 Jun 2008 16:39:10 +02", // truncated time zone
"Sun, 01 Jun 2008 16:39:10 +02", // truncated time zone
{ 0 },
false
},
{
"Sun 01 Jun 2008 16:39:10 G", // truncated time zone
"Sun, 01 Jun 2008 16:39:10 GM", // truncated time zone
{ 0 },
false
},