fix test error

This commit is contained in:
Chris Lu 2018-05-26 04:13:50 -07:00
parent 9e77563c99
commit 828e4a5ace

View file

@ -28,18 +28,13 @@ func TestCreateAndFind(t *testing.T) {
return
}
found, entry, err := filer.FindEntry(fullpath)
entry, err := filer.FindEntry(fullpath)
if err != nil {
t.Errorf("find entry: %v", err)
return
}
if !found {
t.Errorf("Failed to find newly created file")
return
}
if entry.FullPath != entry1.FullPath {
t.Errorf("find wrong entry: %v", entry.FullPath)
return