Skip to content
This repository has been archived by the owner on Dec 19, 2023. It is now read-only.

Commit

Permalink
Revert "updated FQDN's to googleapis.com with a trailing dot (#2214)"…
Browse files Browse the repository at this point in the history
… (#2283)

This reverts commit 13d4ed52402bfb4394aea505b4bab8e6caace989.
  • Loading branch information
stephenplusplus authored May 9, 2017
1 parent 305d22d commit bcd8357
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 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 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 bcd8357

Please sign in to comment.