From 609bb4e4f90862ca0ea0170fd29ff7f5c1146ddc Mon Sep 17 00:00:00 2001 From: felipe andrade <130432649+felipe-op@users.noreply.github.com> Date: Thu, 5 Oct 2023 14:42:40 -0700 Subject: [PATCH] chore(proxyd): remove -race from make tests (#7573) --- proxyd/proxyd/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proxyd/proxyd/Makefile b/proxyd/proxyd/Makefile index 263dc61..049a23a 100644 --- a/proxyd/proxyd/Makefile +++ b/proxyd/proxyd/Makefile @@ -13,9 +13,9 @@ fmt: .PHONY: fmt test: - go test -race -v ./... + go test -v ./... .PHONY: test lint: go vet ./... -.PHONY: test \ No newline at end of file +.PHONY: test