fix for tests

This commit is contained in:
Chris Lu 2019-05-17 02:28:20 -07:00
parent 82b0759493
commit bf9d490538
2 changed files with 4 additions and 1 deletions

View file

@ -56,6 +56,9 @@ func (fsw *FilerStoreWrapper) UpdateEntry(ctx context.Context, entry *Entry) err
func (fsw *FilerStoreWrapper) FindEntry(ctx context.Context, fp FullPath) (entry *Entry, err error) {
entry, err = fsw.actualStore.FindEntry(ctx, fp)
if err != nil {
return nil, err
}
filer_pb.AfterEntryDeserialization(entry.Chunks)
return
}

View file

@ -3,7 +3,7 @@ package filer_pb
import (
"testing"
"github.com/gogo/protobuf/proto"
"github.com/golang/protobuf/proto"
)
func TestFileIdSize(t *testing.T) {