Skip to content

Commit

Permalink
Fix wrong error message (uber#387)
Browse files Browse the repository at this point in the history
  • Loading branch information
vancexu authored Oct 25, 2017
1 parent cbc769d commit 1fb0a3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion host/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1603,7 +1603,7 @@ func (s *integrationSuite) TestContinueAsNewWorkflow() {
for i := 0; i < 10; i++ {
err := poller.pollAndProcessDecisionTask(false, false)
s.logger.Infof("pollAndProcessDecisionTask: %v", err)
s.Nil(err, string(i))
s.Nil(err, strconv.Itoa(i))
}

s.False(workflowComplete)
Expand Down

0 comments on commit 1fb0a3d

Please sign in to comment.