Skip to content

Commit 95a3558

Browse files
authored
test: fix waiting for an HTTP service to be available in an HTTPS test (#929)
In #928 a boolean got flipped. Probably a copy-paste error. This caused the test to wait for an HTTP service to be available in an HTTPS test.
1 parent 6a63ca4 commit 95a3558

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/e2e/cloud_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ func TestServiceLoadBalancersHTTPS(t *testing.T) {
110110

111111
lbSvc, err := lbTest.CreateService(lbSvc)
112112
if assert.NoError(t, err, "deploying test svc") {
113-
WaitForHTTPAvailable(t, lbSvc.Status.LoadBalancer.Ingress[0].IP, false)
113+
WaitForHTTPAvailable(t, lbSvc.Status.LoadBalancer.Ingress[0].IP, true)
114114
}
115115

116116
lbTest.TearDown()

0 commit comments

Comments
 (0)