Removed applyUmask where it doesn't apply.

geesefs-0-30-9
Aaron Jacobs 2015-03-16 13:00:11 +11:00
parent 84fe345196
commit e4005a4fb9
1 changed files with 1 additions and 1 deletions

View File

@ -1070,7 +1070,7 @@ func (t *MemFSTest) Chmod() {
// Stat it.
fi, err := os.Stat(fileName)
AssertEq(nil, err)
ExpectEq(applyUmask(0754), fi.Mode())
ExpectEq(0754, fi.Mode())
}
func (t *MemFSTest) Chtimes() {