Eventually stores all unique exceptions that occur and outputs them in one go at the end. The problem is they are stored in a set which does not preserve the order of occurrence.
DeliveryError: Marcel tried to Eventually do thing that works after a bit 5 times over 5 seconds, but got:
AssertionError: This is going to Fail 4
AssertionError: This is going to Fail 2
AssertionError: This is going to Fail 5
AssertionError: This is going to Fail 3
AssertionError: This is going to Fail 1
Eventually stores all unique exceptions that occur and outputs them in one go at the end. The problem is they are stored in a set which does not preserve the order of occurrence.