We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d469973 commit b1fb1b3Copy full SHA for b1fb1b3
test/integration/deploy_service/deploy_service_test.go
@@ -50,10 +50,11 @@ func TestDeployService(t *testing.T) {
50
pollHTTPEndPoint := func(cmd string) func() (bool, error) {
51
return func() (bool, error) {
52
_, err := http.Get(cmd)
53
- if assert.NoError(err) {
54
- return false, nil
+ if err != nil {
+ t.Logf("%s", err)
55
+ return true, err
56
}
- return true, nil
57
+ return false, nil
58
59
60
0 commit comments