diff options
author | Joshua Sjoding <joshua.sjoding@scjalliance.com> | 2016-02-19 15:42:00 -0800 |
---|---|---|
committer | Joshua Sjoding <joshua.sjoding@scjalliance.com> | 2016-02-19 15:42:00 -0800 |
commit | 916755f7652d4a3189aa717c7f2668c9aa0b1373 (patch) | |
tree | b32c906cef4779c9cec73749400e1a48eff10bf5 /common_test.go | |
parent | 5e100bdb6c60e961730af19ab1691a0d3605de12 (diff) | |
download | go-git-916755f7652d4a3189aa717c7f2668c9aa0b1373.tar.gz |
Improved support for Blob objects
Diffstat (limited to 'common_test.go')
-rw-r--r-- | common_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common_test.go b/common_test.go index fe8227b..53160a7 100644 --- a/common_test.go +++ b/common_test.go @@ -71,7 +71,7 @@ func unpackFixtures(c *C, fixtures ...[]packedFixture) map[string]*Repository { c.Assert(err, IsNil) r := packfile.NewReader(d) - r.Format = packfile.OFSDeltaFormat // TODO: how to know the format of a pack file ahead of time? + r.Format = packfile.OFSDeltaFormat // This is hardcoded because we don't have a good way to sniff the format _, err = r.Read(repos[fixture.url].Storage) c.Assert(err, IsNil) |