Skip to content

Commit 45b54ee

Browse files
cjihrigruyadorno
authored andcommittedNov 21, 2022
test: update uses of _jabber._tcp.google.com
_jabber._tcp.google.com seems to have stopped working. This commit changes the host to _caldav._tcp.google.com. Refs: denoland/std#2881 PR-URL: #45451 Reviewed-By: Santiago Gimeno <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent 9e0e97c commit 45b54ee

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎test/common/internet.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const addresses = {
2525
// record not found. Use this to guarantee record not found.
2626
NOT_FOUND: 'come.on.fhqwhgads.test',
2727
// A host with SRV records registered
28-
SRV_HOST: '_jabber._tcp.google.com',
28+
SRV_HOST: '_caldav._tcp.google.com',
2929
// A host with PTR records registered
3030
PTR_HOST: '8.8.8.8.in-addr.arpa',
3131
// A host with NAPTR records registered

‎test/internet/test-dns-any.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,10 +141,10 @@ TEST(async function test_google_for_cname_and_srv(done) {
141141
assert.ok(types.SRV);
142142
}
143143

144-
validateResult(await dnsPromises.resolve('_jabber._tcp.google.com', 'ANY'));
144+
validateResult(await dnsPromises.resolve('_caldav._tcp.google.com', 'ANY'));
145145

146146
const req = dns.resolve(
147-
'_jabber._tcp.google.com',
147+
'_caldav._tcp.google.com',
148148
'ANY',
149149
common.mustSucceed((ret) => {
150150
validateResult(ret);

0 commit comments

Comments
 (0)
Please sign in to comment.