Skip to content

Commit 2e5b5c0

Browse files
committed
lint
1 parent 552e425 commit 2e5b5c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

enterprise/dbcrypt/cipher_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ func TestCipherAES256(t *testing.T) {
4545
})
4646

4747
t.Run("TestNonce", func(t *testing.T) {
48+
t.Parallel()
4849
key := bytes.Repeat([]byte{'a'}, 32)
4950
cipher, err := dbcrypt.CipherAES256(key)
5051
require.NoError(t, err)
@@ -140,5 +141,4 @@ func TestCiphersBackwardCompatibility(t *testing.T) {
140141
decrypted, err := cs.Decrypt(decoded)
141142
require.NoError(t, err, "decryption should succeed")
142143
require.Equal(t, msg, string(decrypted), "decrypted message should match original message")
143-
144144
}

0 commit comments

Comments
 (0)