Skip to content

Commit

Permalink
pkg/accesslogs: parallelize some tests
Browse files Browse the repository at this point in the history
Change-Id: Ib6092b9901774701d42cae14a0477dda2cb8612a
  • Loading branch information
amwolff committed Dec 3, 2024
1 parent 1136390 commit 68286b0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/accesslogs/processor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,8 @@ func TestProcessorWithShipment(t *testing.T) {
}

func TestRandomKey(t *testing.T) {
t.Parallel()

now := time.Date(2019, time.February, 6, 0, 0, 38, 0, time.UTC)
for _, p := range []string{
"prefix",
Expand Down
2 changes: 2 additions & 0 deletions pkg/accesslogs/s3_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ import (
)

func TestS3AccessLogEntry(t *testing.T) {
t.Parallel()

testTime, err := time.Parse(time.RFC3339, "2024-12-21T13:45:10Z")
require.NoError(t, err)

Expand Down

0 comments on commit 68286b0

Please sign in to comment.