diff options
author | Santiago M. Mola <santi@mola.io> | 2016-12-12 10:09:18 +0100 |
---|---|---|
committer | Santiago M. Mola <santi@mola.io> | 2016-12-12 10:13:10 +0100 |
commit | 6f701ecc18909959364b708b8efddd03cf4e809c (patch) | |
tree | 1cf63ec64a5de003b3821493bf6739d55519ebbd /fixtures | |
parent | 3ba5019e406ab25ee0a658dd2166fa4ac53c52a3 (diff) | |
download | go-git-6f701ecc18909959364b708b8efddd03cf4e809c.tar.gz |
fixtures: fix empty repository fixture .git (#171)
Previous fixture for empty.git was created with clone without --bare.
That was not valid for push tests. Replaced with a .git created with
git init --bare.
Diffstat (limited to 'fixtures')
-rw-r--r-- | fixtures/fixtures.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fixtures/fixtures.go b/fixtures/fixtures.go index e751423..00e7871 100644 --- a/fixtures/fixtures.go +++ b/fixtures/fixtures.go @@ -120,7 +120,7 @@ var fixtures = Fixtures{{ }, { Tags: []string{"empty", ".git"}, URL: "https://github.com/git-fixtures/empty.git", - DotGitHash: plumbing.NewHash("4abe340d8d378baf7c2bfb2854c0fa498642bac3"), + DotGitHash: plumbing.NewHash("bf3fedcc8e20fd0dec9172987ceea0038d17b516"), ObjectsCount: 0, }} |