Skip to content

Commit

Permalink
Follow e2e test changes
Browse files Browse the repository at this point in the history
  • Loading branch information
toVersus committed Jul 24, 2019
1 parent 0c9b52f commit c7f1b99
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/e2e/service_options_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ func TestServiceOptions(t *testing.T) {
})

t.Run("update concurrency options with invalid value for hello service and returns no change", func(t *testing.T) {
testServiceUpdate(t, k, "hello", []string{"--concurrency-limit", "-1", "--concurrency-target", "0"})
test.serviceUpdate(t, "hello", []string{"--concurrency-limit", "-1", "--concurrency-target", "0"})
})

t.Run("returns steady concurrency options for hello service", func(t *testing.T) {
testServiceDescribeConcurrencyLimit(t, k, "hello", "300")
testServiceDescribeConcurrencyTarget(t, k, "hello", "300")
test.serviceDescribeConcurrencyLimit(t, "hello", "300")
test.serviceDescribeConcurrencyTarget(t, "hello", "300")
})

t.Run("delete hello service and returns no error", func(t *testing.T) {
Expand Down

0 comments on commit c7f1b99

Please sign in to comment.