Skip to content

Commit 8958aa4

Browse files
committed
coverage fixes
1 parent 71f37b5 commit 8958aa4

File tree

1 file changed

+1
-1
lines changed
  • hypothesis-python/src/hypothesis/internal/conjecture

1 file changed

+1
-1
lines changed

hypothesis-python/src/hypothesis/internal/conjecture/engine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ def test_function(self, data: ConjectureData) -> None:
419419
}
420420
self.stats_per_test_case.append(call_stats)
421421
self._cache(data)
422-
if data.invalid_at is not None:
422+
if data.invalid_at is not None: # pragma: no branch # coverage bug?
423423
self.misaligned_count += 1
424424

425425
self.debug_data(data)

0 commit comments

Comments
 (0)