We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae40666 commit b419f32Copy full SHA for b419f32
1 file changed
tests/services/test_info.py
@@ -1882,11 +1882,13 @@ async def test_unicast_flag_if_requested():
1882
1883
def async_send(out: DNSOutgoing, addr=const._MDNS_ADDR, port=const._MDNS_PORT):
1884
"""Sends an outgoing packet."""
1885
- for question in out.questions:
+ for question in out.questions:
1886
assert question.unicast
1887
1888
# patch the zeroconf send
1889
with patch.object(aiozc.zeroconf, "async_send", async_send):
1890
- await aiozc.async_get_service_info(f"willnotbefound.{type_}", type_, question_type=r.DNSQuestionType.QU)
+ await aiozc.async_get_service_info(
1891
+ f"willnotbefound.{type_}", type_, question_type=r.DNSQuestionType.QU
1892
+ )
1893
1894
await aiozc.async_close()
0 commit comments