Skip to content

Commit ebe0ab4

Browse files
committed
fix
1 parent 9886b97 commit ebe0ab4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_services.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -960,8 +960,8 @@ async def test_multiple_a_addresses():
960960
host = "multahost.local."
961961
record1 = r.DNSAddress(host, const._TYPE_A, const._CLASS_IN, 1000, b'a')
962962
record2 = r.DNSAddress(host, const._TYPE_A, const._CLASS_IN, 1000, b'b')
963-
cache.async_add(record1)
964-
cache.async_add(record2)
963+
cache.add(record1)
964+
cache.add(record2)
965965

966966
# New kwarg way
967967
info = ServiceInfo(type_, registration_name, 80, 0, 0, desc, host)

0 commit comments

Comments
 (0)