diff --git a/pkg/backend/httpstate/client/client_test.go b/pkg/backend/httpstate/client/client_test.go index 4fd2b6bfbcff..30eaef55b35d 100644 --- a/pkg/backend/httpstate/client/client_test.go +++ b/pkg/backend/httpstate/client/client_test.go @@ -181,7 +181,9 @@ func TestPatchUpdateCheckpointVerbatimPreservesIndent(t *testing.T) { } func TestGetCapabilities(t *testing.T) { + t.Parallel() t.Run("legacy-service-404", func(t *testing.T) { + t.Parallel() s := newMockServer(404, "NOT FOUND") defer s.Close() @@ -192,6 +194,7 @@ func TestGetCapabilities(t *testing.T) { assert.Empty(t, resp.Capabilities) }) t.Run("updated-service-with-delta-checkpoint-capability", func(t *testing.T) { + t.Parallel() cfg := apitype.DeltaCheckpointUploadsConfigV1{ CheckpointCutoffSizeBytes: 1024 * 1024 * 4, }