Skip to content

Commit

Permalink
Merge branch 'tests/e2e-ingress' of github.com:fmartingr/mattermost-o…
Browse files Browse the repository at this point in the history
…perator into tests/e2e-ingress
  • Loading branch information
fmartingr committed Sep 12, 2022
2 parents b55bb3b + 90dc78e commit 478d122
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func (m *mattermostInstance) CreateAndWait() {
// Wait waits for the mattermost instance to be stable
func (m *mattermostInstance) Wait() {
err := WaitForMattermostStable(m.t, m.k8sClient, m.Namespace(), m.timeoutWait)
require.NoError(m.t, err, "Timed out waiting for a stable mattermost instance")
require.NoError(m.t, err, "Timed out waiting for a mattermost instance to become stable")
}

// Destroy destroys the created instance
Expand Down Expand Up @@ -90,7 +90,7 @@ func (m *mattermostInstance) Update(mattermost *mmv1beta.Mattermost) {
ctx, cancel := context.WithTimeout(context.Background(), m.timeoutUpdate)
defer cancel()
err := m.k8sClient.Update(ctx, mattermost)
require.NoError(m.t, err, "Error updating mattermost instance from cluster")
require.NoError(m.t, err, "Error updating mattermost instance")
}

// UpdateAndWait Updates the mattermost instance definition and waits for the instance to be stable
Expand Down

0 comments on commit 478d122

Please sign in to comment.