diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-01-12 14:01:18 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-01-12 14:01:18 -0800 |
commit | 9ea21fa89c3b0762189d2d6e4689b8e09940aad4 (patch) | |
tree | 3dbfb8daa87c48aa679822205eb11638749e832f /t | |
parent | Merge branch 'rw/apply-does-not-take-ignore-date' into maint (diff) | |
parent | approxidate: allow ISO-like dates far in the future (diff) | |
download | tgif-9ea21fa89c3b0762189d2d6e4689b8e09940aad4.tar.xz |
Merge branch 'jk/approxidate-avoid-y-d-m-over-future-dates' into maint
* jk/approxidate-avoid-y-d-m-over-future-dates:
approxidate: allow ISO-like dates far in the future
pass TIME_DATE_NOW to approxidate future-check
Diffstat (limited to 't')
-rwxr-xr-x | t/t0006-date.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/t/t0006-date.sh b/t/t0006-date.sh index e53cf6d36d..fac0986134 100755 --- a/t/t0006-date.sh +++ b/t/t0006-date.sh @@ -82,4 +82,7 @@ check_approxidate 'Jun 6, 5AM' '2009-06-06 05:00:00' check_approxidate '5AM Jun 6' '2009-06-06 05:00:00' check_approxidate '6AM, June 7, 2009' '2009-06-07 06:00:00' +check_approxidate '2008-12-01' '2008-12-01 19:20:00' +check_approxidate '2009-12-01' '2009-12-01 19:20:00' + test_done |