waldenner / robotframework

Automatically exported from code.google.com/p/robotframework
Apache License 2.0
0 stars 0 forks source link

`Run Keywords` keyword reports continuable failures incorrectly #586

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
There's a small bug in error reporting when the new `Run Keywords` keyword 
executes keywords with several continuable failures. For example, if there are 
two failing keywords, first with two continuable failures, the error will look 
like this:

Several failures occurred:

1) Several failures occurred:

1) First continuable

2) Second continuable

2) Third error

Original issue reported on code.google.com by pekka.klarck on 12 Jul 2010 at 8:27

GoogleCodeExporter commented 9 years ago
Fixed in r3806. Now the error in above example looks like this:

Several failures occurred:

1) First continuable

2) Second continuable

3) Third error

Original comment by pekka.klarck on 12 Jul 2010 at 8:29