Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/test_correctness.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ async def read_records() -> None:
last_seq_num: int | None = None
num_records_read = 0

async with stream.read_session(start=SeqNum(0), wait=60) as session:
async with stream.read_session(start=SeqNum(0)) as session:
async for batch in session:
for record in batch.records:
seq_num = record.seq_num
Expand Down Expand Up @@ -89,7 +89,7 @@ async def test_read_session_reports_caught_up_after_delivering_tail(stream: S2St
AppendInput(records=[Record(body=b"first"), Record(body=b"second")])
)

async with stream.read_session(start=TailOffset(2), wait=60) as session:
async with stream.read_session(start=TailOffset(2)) as session:
caught_up = session.caught_up()
records = []

Expand Down
Loading