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
Notice that this method has two times ifFalse: [^true].
Initially both blocks were uncovered. When covering the second block with true the first one was collected as covered.
We were able to correctly collect the second one as covered when adding halt statement in the first block.
This seems to be related to pattern matcher, since changing the block did the trick.
Proposed solution: use path to node instead of node for collecting nodes.
The text was updated successfully, but these errors were encountered:
We encountered the bug when measureing coverage of:
Notice that this method has two times
ifFalse: [^true]
.Initially both blocks were uncovered. When covering the second block with true the first one was collected as covered.
We were able to correctly collect the second one as covered when adding halt statement in the first block.
This seems to be related to pattern matcher, since changing the block did the trick.
Proposed solution: use path to node instead of node for collecting nodes.
The text was updated successfully, but these errors were encountered: