Skip to content

Commit b1fb1b3

Browse files
authored
chore(CI): remove assert so polling is honored (#2037)
1 parent d469973 commit b1fb1b3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

test/integration/deploy_service/deploy_service_test.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,11 @@ func TestDeployService(t *testing.T) {
5050
pollHTTPEndPoint := func(cmd string) func() (bool, error) {
5151
return func() (bool, error) {
5252
_, err := http.Get(cmd)
53-
if assert.NoError(err) {
54-
return false, nil
53+
if err != nil {
54+
t.Logf("%s", err)
55+
return true, err
5556
}
56-
return true, nil
57+
return false, nil
5758
}
5859
}
5960

0 commit comments

Comments
 (0)