diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2017-11-24 13:03:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-24 13:03:33 +0100 |
commit | a83486f1220f229714e0733368d91679e036fb7e (patch) | |
tree | 53cfd2fa5af52a6de17090c783353dc3de76c155 /plumbing | |
parent | 42719aa2372fa8d5b9b33aeda8b1904214991e4c (diff) | |
parent | 6078b09a3988ef207858d9b74f8de51f4cd65ff4 (diff) | |
download | go-git-a83486f1220f229714e0733368d91679e036fb7e.tar.gz |
Merge pull request #656 from darkowlzz/debug-commit-verify
plumbing: object, fix Commit.Verify test
Diffstat (limited to 'plumbing')
-rw-r--r-- | plumbing/object/commit_test.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plumbing/object/commit_test.go b/plumbing/object/commit_test.go index 3f178a8..2f5e075 100644 --- a/plumbing/object/commit_test.go +++ b/plumbing/object/commit_test.go @@ -299,10 +299,11 @@ func (s *SuiteCommit) TestStat(c *C) { func (s *SuiteCommit) TestVerify(c *C) { ts := time.Unix(1511197315, 0) + loc, _ := time.LoadLocation("Asia/Kolkata") commit := &Commit{ Hash: plumbing.NewHash("8a9cea36fe052711fbc42b86e1f99a4fa0065deb"), - Author: Signature{Name: "Sunny", Email: "me@darkowlzz.space", When: ts}, - Committer: Signature{Name: "Sunny", Email: "me@darkowlzz.space", When: ts}, + Author: Signature{Name: "Sunny", Email: "me@darkowlzz.space", When: ts.In(loc)}, + Committer: Signature{Name: "Sunny", Email: "me@darkowlzz.space", When: ts.In(loc)}, Message: `status: simplify template command selection `, TreeHash: plumbing.NewHash("6572ba6df4f1fb323c8aaa24ce07bca0648b161e"), |