From 7ed6ec414fd6ab80c5c5679f9aba68f6b5c6dff3 Mon Sep 17 00:00:00 2001 From: Paramtamtam <7326800+tarampampam@users.noreply.github.com> Date: Sat, 29 Jun 2024 15:04:38 +0400 Subject: [PATCH] =?UTF-8?q?wip:=20=F0=9F=94=95=20temporary=20commit?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/cli/healthcheck/command_test.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/internal/cli/healthcheck/command_test.go b/internal/cli/healthcheck/command_test.go index 8912633..e805e50 100644 --- a/internal/cli/healthcheck/command_test.go +++ b/internal/cli/healthcheck/command_test.go @@ -33,8 +33,6 @@ func (m *fakeHealthChecker) Check(_ context.Context, addr string) error { } func TestCommand_RunSuccess(t *testing.T) { - t.Parallel() - var cmd = healthcheck.NewCommand(logger.NewNop(), &fakeHealthChecker{ t: t, wantAddress: "http://127.0.0.1:1234", @@ -44,8 +42,6 @@ func TestCommand_RunSuccess(t *testing.T) { } func TestCommand_RunFail(t *testing.T) { - t.Parallel() - cmd := healthcheck.NewCommand(logger.NewNop(), &fakeHealthChecker{ t: t, wantAddress: "http://127.0.0.1:4321",