Skip to content

Commit

Permalink
chore(service): More test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rhuss committed Oct 8, 2019
1 parent aa21c6a commit bde6ff9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/basic_workflow_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func (test *e2eTest) serviceCreate(t *testing.T, serviceName string) {
"--image", KnDefaultTestImage}, runOpts{NoNamespace: false})
assert.NilError(t, err)

assert.Check(t, util.ContainsAll(out, "Service", serviceName, "Creating", "namespace", test.kn.namespace, "Ready"))
assert.Check(t, util.ContainsAllIgnoreCase(out, "service", serviceName, "creating", "namespace", test.kn.namespace, "ready"))
}

func (test *e2eTest) serviceList(t *testing.T, serviceName string) {
Expand All @@ -106,7 +106,7 @@ func (test *e2eTest) serviceUpdate(t *testing.T, serviceName string, args []stri
out, err := test.kn.RunWithOpts(append([]string{"service", "update", serviceName}, args...), runOpts{NoNamespace: false})
assert.NilError(t, err)

assert.Check(t, util.ContainsAll(out, "Updating", "service", serviceName, "Ready"))
assert.Check(t, util.ContainsAllIgnoreCase(out, "updating", "service", serviceName, "ready"))
}

func (test *e2eTest) serviceDelete(t *testing.T, serviceName string) {
Expand Down

0 comments on commit bde6ff9

Please sign in to comment.