We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee3e774 commit ad0f65aCopy full SHA for ad0f65a
1 file changed
tests/test_basin_ops.py
@@ -439,24 +439,6 @@ async def test_list_streams_with_start_after_returns_empty_page(
439
except Exception:
440
pass
441
442
- async def test_list_streams_with_start_after_less_than_prefix_errors(
443
- self, shared_basin: S2Basin
444
- ):
445
- basin = shared_basin
446
- base = uuid.uuid4().hex[:6]
447
- names = [f"{base}-a-a", f"{base}-a-b", f"{base}-b-a"]
448
- for name in names:
449
- await basin.create_stream(name=name)
450
- try:
451
- with pytest.raises(S2ServerError):
452
- await basin.list_streams(prefix=f"{base}-b", start_after=f"{base}-a")
453
- finally:
454
455
456
- await basin.delete_stream(name)
457
- except Exception:
458
- pass
459
-
460
async def test_list_streams_with_limit_zero(
461
self, shared_basin: S2Basin, stream_name: str
462
):
0 commit comments