From cde2b7ebab7c69e9387d15d33f2781c304b589cb Mon Sep 17 00:00:00 2001 From: Drew Bednar Date: Sat, 5 Apr 2025 15:09:50 -0400 Subject: [PATCH] Saying work --- Makefile | 2 ++ internal/server/handler_test.go | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) 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") - }