Skip to content
This repository has been archived by the owner on Feb 18, 2024. 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 9f69f08 commit d06748e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 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 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 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 d06748e

Please sign in to comment.