From cc025a9750ce0f36ca4c5d216ae18092957143e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Pereira?= Date: Mon, 26 Aug 2024 12:37:05 -0500 Subject: [PATCH] Fix linter task (#3133) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: João Pereira --- .github/workflows/golangci-lint.yml | 2 +- integration/v7/isolated/app_command_test.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index f1acf264d1d..88b0b530f53 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -53,4 +53,4 @@ jobs: go-version-file: go.mod check-latest: true - name: Run go fmt - run: go fmt && git diff --exit-code + run: make format && git diff --exit-code diff --git a/integration/v7/isolated/app_command_test.go b/integration/v7/isolated/app_command_test.go index f99aa84243c..4e09ca52292 100644 --- a/integration/v7/isolated/app_command_test.go +++ b/integration/v7/isolated/app_command_test.go @@ -271,7 +271,7 @@ applications: g.Expect(session).Should(Say("Active deployment with status DEPLOYING")) g.Expect(session).Should(Say("strategy: rolling")) g.Expect(session).Should(Exit(0)) - }).Should(Succeed()) + }).Should(Succeed()) Eventually(restartSession).Should(Exit(0)) }) }) @@ -299,7 +299,7 @@ applications: g.Expect(session).Should(Say("Active deployment with status CANCELING")) g.Expect(session).Should(Say("strategy: canary")) g.Expect(session).Should(Exit(0)) - }).Should(Succeed()) + }).Should(Succeed()) }) }) })