diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2016-08-11 18:07:29 +0200 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2016-08-11 18:07:29 +0200 |
commit | 1f64d789038594098ea2c9cf796391f101d0bea5 (patch) | |
tree | 50fb530fc2e48560e70489dc81758f54822dcf50 /storage/seekable/storage_test.go | |
parent | c1e277a7ca75ff84741d75ad45e29a2ff3e633e3 (diff) | |
download | go-git-1f64d789038594098ea2c9cf796391f101d0bea5.tar.gz |
core: new MemoryObject, move from memory.Object, packfile.Parser, base on new ObjectStorage interface
Diffstat (limited to 'storage/seekable/storage_test.go')
-rw-r--r-- | storage/seekable/storage_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/seekable/storage_test.go b/storage/seekable/storage_test.go index 2002d2b..bd12ed1 100644 --- a/storage/seekable/storage_test.go +++ b/storage/seekable/storage_test.go @@ -321,6 +321,6 @@ func (s *FsSuite) TestSet(c *C) { sto, err := seekable.New(fs, gitPath) c.Assert(err, IsNil) - _, err = sto.Set(&memory.Object{}) + _, err = sto.Set(&core.MemoryObject{}) c.Assert(err, ErrorMatches, "not implemented yet") } |