wip: 🔕 temporary commit

This commit is contained in:
Paramtamtam 2024-06-29 15:04:38 +04:00
parent 14815b4c73
commit 7ed6ec414f
No known key found for this signature in database
GPG Key ID: 366371698FAD0A2B

View File

@ -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",