Skip to content

Commit c7455b9

Browse files
committed
chore: lint
1 parent 0b3b85a commit c7455b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/configssh_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ func TestConfigSSH_MissingDirectory(t *testing.T) {
207207
// Check that the directory has proper permissions (0700)
208208
sshDirInfo, err := os.Stat(sshDir)
209209
require.NoError(t, err)
210-
require.Equal(t, os.FileMode(os.ModePerm), sshDirInfo.Mode().Perm(), "directory should have 0700 permissions")
210+
require.Equal(t, os.ModePerm, sshDirInfo.Mode().Perm(), "directory should have 0700 permissions")
211211
}
212212

213213
func TestConfigSSH_FileWriteAndOptionsFlow(t *testing.T) {

0 commit comments

Comments
 (0)