Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Aiven-Open/karapace
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 78ce72eb8b2a52e22f9c40382c5037b16f9d802f
Choose a base ref
..
head repository: Aiven-Open/karapace
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4740bab90f8d460346a6add1fb70b923f69ac000
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 tests/unit/test_schema_reader.py
2 changes: 1 addition & 1 deletion tests/unit/test_schema_reader.py
Original file line number Diff line number Diff line change
@@ -138,7 +138,7 @@ def test_readiness_check(testcase: ReadinessTestCase) -> None:
key_formatter_mock = Mock()
consumer_mock = Mock()
consumer_mock.consume.return_value = []
# Return dict {partition: offsets}, end offset is the next upcoming record offset
# Return tuple (beginning, end), end offset is the next upcoming record offset
consumer_mock.get_watermark_offsets.return_value = (0, testcase.end_offset)

offset_watcher = OffsetWatcher()