Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion homeassistant/components/ssdp/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"domain": "ssdp",
"name": "Simple Service Discovery Protocol (SSDP)",
"after_dependencies": ["zeroconf"],
"codeowners": [],
"dependencies": ["network"],
"documentation": "https://www.home-assistant.io/integrations/ssdp",
Expand Down
6 changes: 2 additions & 4 deletions tests/test_requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -565,15 +565,13 @@ async def test_discovery_requirements_ssdp(hass: HomeAssistant) -> None:
) as mock_process:
await async_get_integration_with_requirements(hass, "ssdp_comp")

assert len(mock_process.mock_calls) == 5
assert len(mock_process.mock_calls) == 4
assert mock_process.mock_calls[0][1][1] == ssdp.requirements
# Ensure zeroconf is a dep for ssdp
assert {
mock_process.mock_calls[1][1][0],
mock_process.mock_calls[2][1][0],
mock_process.mock_calls[3][1][0],
mock_process.mock_calls[4][1][0],
} == {"http", "network", "recorder", "zeroconf"}
} == {"http", "network", "recorder"}


@pytest.mark.parametrize(
Expand Down