aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/object/commit_test.go
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2017-11-24 13:03:33 +0100
committerGitHub <noreply@github.com>2017-11-24 13:03:33 +0100
commita83486f1220f229714e0733368d91679e036fb7e (patch)
tree53cfd2fa5af52a6de17090c783353dc3de76c155 /plumbing/object/commit_test.go
parent42719aa2372fa8d5b9b33aeda8b1904214991e4c (diff)
parent6078b09a3988ef207858d9b74f8de51f4cd65ff4 (diff)
downloadgo-git-a83486f1220f229714e0733368d91679e036fb7e.tar.gz
Merge pull request #656 from darkowlzz/debug-commit-verify
plumbing: object, fix Commit.Verify test
Diffstat (limited to 'plumbing/object/commit_test.go')
-rw-r--r--plumbing/object/commit_test.go5
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"),