Skip to content

Commit

Permalink
Moar test fixes :old-man-yelling-at-test-suite: (#2758)
Browse files Browse the repository at this point in the history
Update apps_v2_integration_test.go
  • Loading branch information
michaeldwan committed Aug 29, 2023
1 parent 6b4931e commit 47a9462
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/preflight/apps_v2_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ func TestAppsV2Example(t *testing.T) {

require.EventuallyWithT(t, func(c *assert.CollectT) {
resp, err := http.Get(appUrl)
require.NoError(c, err)
require.Equal(c, http.StatusOK, resp.StatusCode)
assert.NoError(c, err)
assert.Equal(c, http.StatusOK, resp.StatusCode)
}, 20*time.Second, 1*time.Second, "GET %s never returned 200 OK response 20 seconds", appUrl)

machList := f.MachinesList(appName)
Expand Down

0 comments on commit 47a9462

Please sign in to comment.