From 562f0f0e6b798926f0c37b9ac4409583b186a261 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Grac=CC=A7as?= Date: Tue, 4 Jan 2022 20:51:59 +0100 Subject: [PATCH] fix cammel case usage MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fabiano Graças --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ef02f13..317f57c 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ build: build-common ## - build a debug binary to the current platform (windows, .PHONY: format-check format-check: ## - check files format using gofmt - @ ./_support/scripts/ci.sh fmtcheck + @ ./_support/scripts/ci.sh fmtCheck .PHONY: format-check format: ## - apply golang file format using gofmt @@ -30,7 +30,7 @@ format: ## - apply golang file format using gofmt .PHONY: test test: build-common ## - execute go test command for unit and mocked tests - @ ./_support/scripts/ci.sh unittest + @ ./_support/scripts/ci.sh unitTest .PHONY: integration-test integration-test: ## - execute go test command for integration tests (aws credentials needed)