Skip to content

Commit

Permalink
Set t.Parallel()
Browse files Browse the repository at this point in the history
  • Loading branch information
k1LoW committed Dec 18, 2024
1 parent e21bc82 commit 58dddb4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions store_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ func TestStoreLatest(t *testing.T) {
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
got := tt.store.latest()
if diff := cmp.Diff(tt.want, got); diff != "" {
t.Error(diff)
Expand Down Expand Up @@ -179,6 +180,7 @@ func TestStorePrevious(t *testing.T) {
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
got := tt.store.previous()
if diff := cmp.Diff(tt.want, got); diff != "" {
t.Error(diff)
Expand Down

0 comments on commit 58dddb4

Please sign in to comment.