|
19 | 19 | class ServiceTypesQuery(unittest.TestCase): |
20 | 20 | def test_integration_with_listener(self): |
21 | 21 |
|
22 | | - type_ = "_test-srvc-type._tcp.local." |
| 22 | + type_ = "_test-listen-type._tcp.local." |
23 | 23 | name = "xxxyyy" |
24 | 24 | registration_name = "%s.%s" % (name, type_) |
25 | 25 |
|
@@ -50,7 +50,7 @@ def test_integration_with_listener(self): |
50 | 50 | @unittest.skipIf(os.environ.get('SKIP_IPV6'), 'IPv6 tests disabled') |
51 | 51 | def test_integration_with_listener_v6_records(self): |
52 | 52 |
|
53 | | - type_ = "_test-srvc-type._tcp.local." |
| 53 | + type_ = "_test-listenv6rec-type._tcp.local." |
54 | 54 | name = "xxxyyy" |
55 | 55 | registration_name = "%s.%s" % (name, type_) |
56 | 56 | addr = "2606:2800:220:1:248:1893:25c8:1946" # example.com |
@@ -82,7 +82,7 @@ def test_integration_with_listener_v6_records(self): |
82 | 82 | @unittest.skipIf(os.environ.get('SKIP_IPV6'), 'IPv6 tests disabled') |
83 | 83 | def test_integration_with_listener_ipv6(self): |
84 | 84 |
|
85 | | - type_ = "_test-srvc-type._tcp.local." |
| 85 | + type_ = "_test-listenv6ip-type._tcp.local." |
86 | 86 | name = "xxxyyy" |
87 | 87 | registration_name = "%s.%s" % (name, type_) |
88 | 88 |
|
@@ -111,7 +111,7 @@ def test_integration_with_listener_ipv6(self): |
111 | 111 |
|
112 | 112 | def test_integration_with_subtype_and_listener(self): |
113 | 113 | subtype_ = "_subtype._sub" |
114 | | - type_ = "_type._tcp.local." |
| 114 | + type_ = "_listen._tcp.local." |
115 | 115 | name = "xxxyyy" |
116 | 116 | # Note: discovery returns only DNS-SD type not subtype |
117 | 117 | discovery_type = "%s.%s" % (subtype_, type_) |
|
0 commit comments