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 return
} }
found, entry, err := filer.FindEntry(fullpath) entry, err := filer.FindEntry(fullpath)
if err != nil { if err != nil {
t.Errorf("find entry: %v", err) t.Errorf("find entry: %v", err)
return return
} }
if !found {
t.Errorf("Failed to find newly created file")
return
}
if entry.FullPath != entry1.FullPath { if entry.FullPath != entry1.FullPath {
t.Errorf("find wrong entry: %v", entry.FullPath) t.Errorf("find wrong entry: %v", entry.FullPath)
return return