Skip to content

Commit 64729ae

Browse files
committed
update comments
1 parent c0b65ef commit 64729ae

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/integration/gpg_ssh_git_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ func TestGPGGit(t *testing.T) {
5050
}
5151

5252
func TestGPGGitDefaults(t *testing.T) {
53-
tmpDir := t.TempDir() // use a temp dir to avoid messing with the user's GPG keyring
53+
tmpDir := t.TempDir() // use a temp dir to avoid messing with the user's GPG keyring and git config
5454
err := os.Chmod(tmpDir, 0o700)
5555
assert.NoError(t, err)
5656

@@ -79,7 +79,7 @@ func TestGPGGitDefaults(t *testing.T) {
7979
}
8080

8181
func TestSSHGit(t *testing.T) {
82-
tmpDir := t.TempDir() // use a temp dir to avoid messing with the user's GPG keyring
82+
tmpDir := t.TempDir() // use a temp dir to store the SSH keys
8383
err := os.Chmod(tmpDir, 0o700)
8484
assert.NoError(t, err)
8585

@@ -106,7 +106,7 @@ func TestSSHGit(t *testing.T) {
106106
}
107107

108108
func TestSSHGitDefaults(t *testing.T) {
109-
tmpDir := t.TempDir() // use a temp dir to avoid messing with the user's GPG keyring
109+
tmpDir := t.TempDir() // use a temp dir to store the SSH keys and git config
110110
err := os.Chmod(tmpDir, 0o700)
111111
assert.NoError(t, err)
112112

0 commit comments

Comments
 (0)