Skip to content

Commit d29735c

Browse files
Fix linter task (#3132)
Signed-off-by: João Pereira <[email protected]>
1 parent dc62c14 commit d29735c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ jobs:
5353
go-version-file: go.mod
5454
check-latest: true
5555
- name: Run go fmt
56-
run: go fmt && git diff --exit-code
56+
run: make format && git diff --exit-code

integration/v7/isolated/app_command_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ applications:
271271
g.Expect(session).Should(Say("Active deployment with status DEPLOYING"))
272272
g.Expect(session).Should(Say("strategy: rolling"))
273273
g.Expect(session).Should(Exit(0))
274-
}).Should(Succeed())
274+
}).Should(Succeed())
275275
Eventually(restartSession).Should(Exit(0))
276276
})
277277
})
@@ -299,7 +299,7 @@ applications:
299299
g.Expect(session).Should(Say("Active deployment with status CANCELING"))
300300
g.Expect(session).Should(Say("strategy: canary"))
301301
g.Expect(session).Should(Exit(0))
302-
}).Should(Succeed())
302+
}).Should(Succeed())
303303
})
304304
})
305305
})

0 commit comments

Comments
 (0)