Skip to content

Commit 3a02059

Browse files
Fix test to expect retry as int instead of string
1 parent 1c90917 commit 3a02059

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/shared/test_streamable_http.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1667,7 +1667,7 @@ async def test_create_priming_event_with_event_store():
16671667
assert "id" in priming_event
16681668
assert priming_event["id"] == "1" # First event ID from SimpleEventStore
16691669
assert priming_event["data"] == "" # Empty data for priming
1670-
assert priming_event["retry"] == "5000"
1670+
assert priming_event["retry"] == 5000
16711671

16721672

16731673
@pytest.mark.anyio

0 commit comments

Comments
 (0)