fix test error
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user