You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying assertCount with a generator, a mismatch between the expected and generator count will show an invalid message. The reason is that the Generator is closed during the evaluation, and cannot get the count when generating the message.
Current behavior
Failed asserting that actual size 0 matches expected size EXPECTED_VALUE
Summary
When trying
assertCount
with a generator, a mismatch between the expected and generator count will show an invalid message. The reason is that the Generator is closed during the evaluation, and cannot get the count when generating the message.Current behavior
Failed asserting that actual size 0 matches expected size EXPECTED_VALUE
How to reproduce
Expected behavior
Failed asserting that actual size ACTUAL_SIZE matches expected size EXPECTED_VALUE
The text was updated successfully, but these errors were encountered: