Skip to content
Open
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
2 changes: 1 addition & 1 deletion tests/api/test_livekitapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ async def _sip_call_error(sip: dict, *, wait: bool = False):
def test_sip_busy():
err = asyncio.run(_sip_call_error({"code": 486, "status": "Busy Here"}))
assert isinstance(err, ServerError)
assert err.code == "resource_exhausted"
assert err.code == "failed_precondition"
assert err.sip_status_code == 486
assert err.sip_status == "Busy Here"
# printable representation makes the failure clear
Expand Down