diff --git a/internal/syscallcompat/sys_common_test.go b/internal/syscallcompat/sys_common_test.go index 3729111..3e2d80e 100644 --- a/internal/syscallcompat/sys_common_test.go +++ b/internal/syscallcompat/sys_common_test.go @@ -175,7 +175,7 @@ func TestFchmodat(t *testing.T) { defer syscall.Close(dirfd) // Check that chmod on a regular file works ok - err = FchmodatNofollow(dirfd, regular, 0111, 0) + err = FchmodatNofollow(dirfd, regular, 0111) if err != nil { t.Fatal(err) } @@ -185,7 +185,7 @@ func TestFchmodat(t *testing.T) { if st.Mode != 0111 { t.Errorf("wrong mode: %#0o", st.Mode) } - err = FchmodatNofollow(dirfd, regular, 0000, 0) + err = FchmodatNofollow(dirfd, regular, 0000) if err != nil { t.Error(err) } @@ -196,7 +196,7 @@ func TestFchmodat(t *testing.T) { } // Check what happens on a symlink - err = FchmodatNofollow(dirfd, symlink, 0333, 0) + err = FchmodatNofollow(dirfd, symlink, 0333) if err == nil { syscall.Lstat(tmpDir+"/"+symlink, &st) st.Mode &= 0777