From 1e4aa31cf00cfd86e4f1c11323177c689f862ec5 Mon Sep 17 00:00:00 2001 From: Anton Tayanovskyy Date: Tue, 22 Nov 2022 18:17:24 -0500 Subject: [PATCH] Satisfy lint --- pkg/backend/httpstate/client/client_test.go | 3 +++ 1 file changed, 3 insertions(+) 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, }