Skip to content

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 13d4ed5.
  • Loading branch information
stephenplusplus authored May 9, 2017
1 parent b382ee9 commit c1e37c2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/google-cloud-node/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ function Speech(options) {
};

var config = {
baseUrl: 'speech.googleapis.com.',
baseUrl: 'speech.googleapis.com',
projectIdRequired: false,
service: 'speech',
protoServices: {
Expand Down
2 changes: 1 addition & 1 deletion packages/google-cloud-node/system-test/speech.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ FILENAMES.forEach(function(filename) {
name: name,
path: path.join(__dirname, 'data/' + name),
gcsUri: 'gs://' + BUCKET_NAME + '/' + name,
httpUri: 'https://storage.googleapis.com./' + BUCKET_NAME + '/' + name
httpUri: 'https://storage.googleapis.com/' + BUCKET_NAME + '/' + name
};
});

Expand Down
2 changes: 1 addition & 1 deletion packages/google-cloud-node/test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ describe('Speech', function() {
var calledWith = speech.calledWith_[0];

assert.deepEqual(calledWith, {
baseUrl: 'speech.googleapis.com.',
baseUrl: 'speech.googleapis.com',
projectIdRequired: false,
service: 'speech',
protoServices: {
Expand Down

0 comments on commit c1e37c2

Please sign in to comment.