mirror of https://github.com/pkg/sftp.git
Do not check bavail, it can change in a shared CI environment
This commit is contained in:
parent
ab074834b7
commit
fc30a3e623
|
@ -39,8 +39,4 @@ func TestClientStatVFS(t *testing.T) {
|
|||
if vfs.Favail != uint64(s.Ffree) {
|
||||
t.Fatal("f_namemax does not match")
|
||||
}
|
||||
|
||||
if vfs.Bavail != s.Bavail {
|
||||
t.Fatal("f_bavail does not match")
|
||||
}
|
||||
}
|
||||
|
|
|
@ -39,8 +39,4 @@ func TestClientStatVFS(t *testing.T) {
|
|||
if vfs.Namemax != uint64(s.Namelen) {
|
||||
t.Fatal("f_namemax does not match, expected: %v, got: %v", s.Namelen, vfs.Namemax)
|
||||
}
|
||||
|
||||
if vfs.Bavail != s.Bavail {
|
||||
t.Fatal("f_bavail does not match, expeced: %v, got: %v", s.Bavail, vfs.Bavail)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue