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 bee9714 commit e7899f6
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-resourcemanager/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ function Resource(options) {
}

var config = {
baseUrl: 'https://cloudresourcemanager.googleapis.com/v1',
baseUrl: 'https://cloudresourcemanager.googleapis.com./v1',
scopes: ['https://www.googleapis.com/auth/cloud-platform'],
projectIdRequired: false,
packageJson: require('../package.json')
Expand Down
2 changes: 1 addition & 1 deletion packages/google-cloud-resourcemanager/test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ describe('Resource', function() {

var calledWith = resource.calledWith_[0];

var baseUrl = 'https://cloudresourcemanager.googleapis.com/v1';
var baseUrl = 'https://cloudresourcemanager.googleapis.com./v1';
assert.strictEqual(calledWith.baseUrl, baseUrl);
assert.deepEqual(calledWith.scopes, [
'https://www.googleapis.com/auth/cloud-platform'
Expand Down

0 comments on commit e7899f6

Please sign in to comment.