Skip to content

Commit

Permalink
test: Fix test (argoproj#2490)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexec authored Mar 21, 2020
1 parent bfaf1c2 commit f3df966
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/e2e/cli_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -181,12 +181,12 @@ func (s *CLISuite) TestRoot() {
})
})
s.Run("List", func() {
const rowCount = 1
for i := 0; i < rowCount*3; i++ {
for i := 0; i < 3; i++ {
s.Given().
Workflow("@smoke/basic-generate-name.yaml").
When().
SubmitWorkflow()
SubmitWorkflow().
WaitForWorkflow(15 * time.Second)
}
s.Given().RunCli([]string{"list"}, func(t *testing.T, output string, err error) {
if assert.NoError(t, err) {
Expand Down

0 comments on commit f3df966

Please sign in to comment.