Skip to content

Commit 45b54ee

Browse files
cjihrigruyadorno
authored andcommitted
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 <santiago.gimeno@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
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)