Skip to content
This repository was archived by the owner on Sep 3, 2021. It is now read-only.

Commit 89efcaf

Browse files
committed
Run tests in parallel
1 parent 7c6164c commit 89efcaf

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

string_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ import (
2323
)
2424

2525
func TestAESEncrypt(t *testing.T) {
26+
t.Parallel()
27+
2628
key := make([]byte, 16) // AES-128
2729
_, err := rand.Read(key)
2830
if err != nil {
@@ -44,6 +46,8 @@ func TestAESEncrypt(t *testing.T) {
4446
}
4547

4648
func TestAESDecrypt(t *testing.T) {
49+
t.Parallel()
50+
4751
key := make([]byte, 16) // AES-128
4852
_, err := rand.Read(key)
4953
if err != nil {

0 commit comments

Comments
 (0)