Skip to content

Commit

Permalink
Bump voip-utils (#132110)
Browse files Browse the repository at this point in the history
Co-authored-by: Paulus Schoutsen <balloob@gmail.com>
  • Loading branch information
synesthesiam and balloob authored Dec 3, 2024
1 parent ff77ecd commit af5574f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion homeassistant/components/voip/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"documentation": "https://www.home-assistant.io/integrations/voip",
"iot_class": "local_push",
"quality_scale": "internal",
"requirements": ["voip-utils==0.1.0"]
"requirements": ["voip-utils==0.2.1"]
}
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2947,7 +2947,7 @@ venstarcolortouch==0.19
vilfo-api-client==0.5.0

# homeassistant.components.voip
voip-utils==0.1.0
voip-utils==0.2.1

# homeassistant.components.volkszaehler
volkszaehler==0.4.0
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2357,7 +2357,7 @@ venstarcolortouch==0.19
vilfo-api-client==0.5.0

# homeassistant.components.voip
voip-utils==0.1.0
voip-utils==0.2.1

# homeassistant.components.volvooncall
volvooncall==0.10.3
Expand Down
4 changes: 2 additions & 2 deletions tests/components/voip/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

import pytest
from voip_utils import CallInfo
from voip_utils.sip import get_sip_endpoint

from homeassistant.components.voip import DOMAIN
from homeassistant.components.voip.devices import VoIPDevice, VoIPDevices
Expand Down Expand Up @@ -55,8 +56,7 @@ async def voip_devices(hass: HomeAssistant, setup_voip: None) -> VoIPDevices:
def call_info() -> CallInfo:
"""Fake call info."""
return CallInfo(
caller_ip="192.168.1.210",
caller_sip_port=5060,
caller_endpoint=get_sip_endpoint("192.168.1.210", 5060),
caller_rtp_port=5004,
server_ip="192.168.1.10",
headers={
Expand Down

0 comments on commit af5574f

Please sign in to comment.