Mercurial > public > mercurial-scm > hg-stable
diff tests/test-parse-date.t @ 35823:48783333f45c stable
date: fix parsing months
Thanks nemo for discovering this on #mercurial IRC channel.
Test Plan:
Add a test. It fails before this patch:
```
+ hg: parse error: invalid date: 'Feb 2018'
+ hg: parse error: invalid date: 'Apr 2018'
+ hg: parse error: invalid date: 'Jun 2018'
+ hg: parse error: invalid date: 'Sep 2018'
+ hg: parse error: invalid date: 'Nov 2018'
```
Differential Revision: https://phab.mercurial-scm.org/D2289
author | Jun Wu <quark@fb.com> |
---|---|
date | Fri, 16 Feb 2018 13:25:39 -0800 |
parents | bb18728ea617 |
children | 0a10f142299d |
line wrap: on
line diff
--- a/tests/test-parse-date.t Tue Feb 13 18:12:26 2018 +0800 +++ b/tests/test-parse-date.t Fri Feb 16 13:25:39 2018 -0800 @@ -286,3 +286,9 @@ $ hg debugdate "2016-07-27 121021Z" internal: 1469621421 0 standard: Wed Jul 27 12:10:21 2016 +0000 + +Test parsing months + + $ for i in Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec; do + > hg log -d "$i 2018" -r null + > done