Skip to content

Commit 3be07d6

Browse files
committed
fix lint errors
1 parent 19e3c07 commit 3be07d6

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

tests/framework/resourcemanager.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,11 @@ func (rm *ResourceManager) WaitForAppsToBeReadyWithPodCount(namespace string, po
691691
return rm.WaitForAppsToBeReadyWithCtxWithPodCount(ctx, namespace, podCount)
692692
}
693693

694-
func (rm *ResourceManager) WaitForAppsToBeReadyWithCtxWithPodCount(ctx context.Context, namespace string, podCount int) error {
694+
func (rm *ResourceManager) WaitForAppsToBeReadyWithCtxWithPodCount(
695+
ctx context.Context,
696+
namespace string,
697+
podCount int,
698+
) error {
695699
if err := rm.WaitForPodsToBeReadyWithCount(ctx, namespace, podCount); err != nil {
696700
return err
697701
}

tests/suite/graceful_recovery_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ func checkContainerLogsForErrors(ngfPodName string) {
271271
Expect(line).ToNot(ContainSubstring("[emerg]"), line)
272272
if strings.Contains(line, "[error]") {
273273
expectedError1 := "connect() failed (111: Connection refused)"
274-
//FIXME(salonichf5) remove this error message check when https://github.com/nginxinc/nginx-gateway-fabric/issues/2090 is completed.
274+
// FIXME(salonichf5) remove this error message check when https://github.com/nginxinc/nginx-gateway-fabric/issues/2090 is completed.
275275
expectedError2 := "no live upstreams while connecting to upstream"
276276
Expect(line).To(Or(Equal(expectedError1), Equal(expectedError2)))
277277
}

0 commit comments

Comments
 (0)