From 58dddb49bb137cb677c4404303ea96cf255dbfb2 Mon Sep 17 00:00:00 2001 From: k1LoW Date: Thu, 19 Dec 2024 06:29:26 +0900 Subject: [PATCH] Set t.Parallel() --- store_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/store_test.go b/store_test.go index 9e0de792..4fd7a9b1 100644 --- a/store_test.go +++ b/store_test.go @@ -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) @@ -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)