Skip to content

Commit

Permalink
Fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
aduffeck committed Mar 10, 2021
1 parent 79902e5 commit 9e5fda7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/integration/grpc/grpc_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ func startRevads(configs map[string]string, variables map[string]string) (map[st
if err != nil {
return errors.Wrap(err, "Could not kill revad")
}
waitForPort(ownAddress, "close")
_ = waitForPort(ownAddress, "close")
if keepLogs {
fmt.Println("Test failed, keeping root", tmpRoot, "around for debugging")
} else {
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/grpc/userprovider_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ var _ = Describe("user providers", func() {

AfterEach(func() {
for _, r := range revads {
r.Cleanup(CurrentGinkgoTestDescription().Failed)
Expect(r.Cleanup(CurrentGinkgoTestDescription().Failed))
}
})

Expand Down

0 comments on commit 9e5fda7

Please sign in to comment.