Skip to content

Commit

Permalink
updated FQDN's to googleapis.com with a trailing dot (#2214)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericuldall authored and callmehiphop committed Apr 14, 2017
1 parent ee51391 commit 41c3f01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/google-cloud-dns/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function DNS(options) {
}

var config = {
baseUrl: 'https://www.googleapis.com/dns/v1',
baseUrl: 'https://www.googleapis.com./dns/v1',
scopes: [
'https://www.googleapis.com/auth/ndev.clouddns.readwrite',
'https://www.googleapis.com/auth/cloud-platform'
Expand Down
2 changes: 1 addition & 1 deletion packages/google-cloud-dns/test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ describe('DNS', function() {

var calledWith = dns.calledWith_[0];

var baseUrl = 'https://www.googleapis.com/dns/v1';
var baseUrl = 'https://www.googleapis.com./dns/v1';
assert.strictEqual(calledWith.baseUrl, baseUrl);
assert.deepEqual(calledWith.scopes, [
'https://www.googleapis.com/auth/ndev.clouddns.readwrite',
Expand Down

0 comments on commit 41c3f01

Please sign in to comment.