diff --git a/Makefile b/Makefile index ebbf9be..67ce6d4 100644 --- a/Makefile +++ b/Makefile @@ -23,6 +23,8 @@ test-int: go test $(FLAGS) ./cmd/... .PHONY: test-int + +## Coverage See also -covermode=count and -covermode=atomic cover-html: test-cover go tool cover -html=$(COVER_PROFILE) .PHONY:cover-html diff --git a/internal/server/handler_test.go b/internal/server/handler_test.go index fcd9887..e4401b1 100644 --- a/internal/server/handler_test.go +++ b/internal/server/handler_test.go @@ -45,5 +45,4 @@ func TestPing(t *testing.T) { body = bytes.TrimSpace(body) assert.Equal(t, string(body), "OK") - }