Skip to content

Commit

Permalink
temp: check output of test
Browse files Browse the repository at this point in the history
  • Loading branch information
gene-redpanda committed Oct 29, 2024
1 parent f5238f6 commit dc9149c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ def validate_transform(self):
dst_high_watermarks = self.get_high_watermarks(self._dst_topic)
for p, hw in src_high_watermarks.items():
assert dst_high_watermarks[
p] >= hw, "Transformed partitions must the same or larger watermark than source"
p] >= hw, f"Transformed partitions {p} must the same or larger watermark than source {hw}"
src_msgs = defaultdict(list)
dst_msgs = defaultdict(list)
consumer = ck.DeserializingConsumer({
Expand Down

0 comments on commit dc9149c

Please sign in to comment.