remove nlink property from directory node

This commit is contained in:
Chris Lu
2018-05-12 22:42:28 -07:00
parent 9ecbf92569
commit fc7f81f6e7
4 changed files with 10 additions and 12 deletions

View File

@@ -101,8 +101,9 @@ func TestCreateFileAndList(t *testing.T) {
return
}
file3Path := filer2.FullPath("/home/chris/this/is/file3.jpg")
entry3 := &filer2.Entry{
FullPath: filer2.FullPath("/home/chris/this/is/file3.jpg"),
FullPath: file3Path,
Attr: filer2.Attr{
Mode: 0440,
Uid: 1234,
@@ -118,4 +119,12 @@ func TestCreateFileAndList(t *testing.T) {
return
}
// delete file and count
filer.DeleteEntry(file3Path)
entries, _ = filer.ListDirectoryEntries(filer2.FullPath("/home/chris/this/is"))
if len(entries) != 1 {
t.Errorf("list entries count: %v", len(entries))
return
}
}