Skip to content

Commit

Permalink
Do not check bavail, it can change in a shared CI environment
Browse files Browse the repository at this point in the history
  • Loading branch information
davecheney committed Jun 15, 2016
1 parent ab07483 commit fc30a3e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
4 changes: 0 additions & 4 deletions client_integration_darwin_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
}
4 changes: 0 additions & 4 deletions client_integration_linux_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}

0 comments on commit fc30a3e

Please sign in to comment.