Skip to content

Commit b40f93f

Browse files
committed
log out the statvfs object on non-error
1 parent 902e93f commit b40f93f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

localfs/localfs_integration_test.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -769,10 +769,12 @@ func TestStatVFS(t *testing.T) {
769769
t.Fatalf("unexpected error, got %v, should be fs.ErrNotFound", err)
770770
}
771771

772-
_, err = cl.StatVFS(toRemotePath(dir))
772+
resp, err := cl.StatVFS(toRemotePath(dir))
773773
if err != nil {
774774
t.Fatal(err)
775775
}
776+
777+
t.Logf("%+v", resp)
776778
}
777779

778780
var benchBuf []byte

0 commit comments

Comments
 (0)