Skip to content

Commit 1ef2a27

Browse files
author
Mauricio Bonetti
committed
issues/1449 - Enabling parallel execution in tests for improved performance.
1 parent 9e99baf commit 1ef2a27

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

pkg/secrets/keyring/keyctl_linux.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,6 @@ func (k *keyctlProvider) IsAvailable() bool {
140140
return true
141141
}
142142

143-
func (_ *keyctlProvider) Name() string {
143+
func (*keyctlProvider) Name() string {
144144
return "Linux Keyctl"
145145
}

pkg/secrets/keyring/keyctl_linux_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ func TestKeyctlProvider_BasicOperations(t *testing.T) {
104104
})
105105

106106
t.Run("DeleteAll", func(t *testing.T) {
107+
t.Parallel()
107108
// Set multiple keys
108109
keys := []string{"key1", "key2", "key3"}
109110
for _, key := range keys {

0 commit comments

Comments
 (0)