Skip to content

Commit

Permalink
Fix linter task (#3133)
Browse files Browse the repository at this point in the history
Signed-off-by: João Pereira <joaod@vmware.com>
  • Loading branch information
joaopapereira authored Aug 26, 2024
1 parent baff1ef commit cc025a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions integration/v7/isolated/app_command_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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))
})
})
Expand Down Expand Up @@ -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())
})
})
})
Expand Down

0 comments on commit cc025a9

Please sign in to comment.