Skip to content

Commit

Permalink
Undue Wrapf,
Browse files Browse the repository at this point in the history
that was mistake
  • Loading branch information
dnephin committed Nov 11, 2018
1 parent 10cb0bb commit 7c797b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion poll/example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func ExampleWaitOn() {
check := func(t poll.LogT) poll.Result {
actual, err := numOfProcesses()
if err != nil {
return poll.Error(errors.Wrapf(err, "failed to get number of processes"))
return poll.Error(errors.Wrap(err, "failed to get number of processes"))
}
if actual == desired {
return poll.Success()
Expand Down

0 comments on commit 7c797b5

Please sign in to comment.