diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index f1acf264d1..88b0b530f5 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 f99aa84243..4e09ca5229 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()) }) }) })