Skip to content
This repository was archived by the owner on Feb 18, 2024. It is now read-only.

Commit d06748e

Browse files
Revert "updated FQDN's to googleapis.com with a trailing dot (#2214)" (#2283)
This reverts commit 13d4ed52402bfb4394aea505b4bab8e6caace989.
1 parent 9f69f08 commit d06748e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ function Speech(options) {
7171
};
7272

7373
var config = {
74-
baseUrl: 'speech.googleapis.com.',
74+
baseUrl: 'speech.googleapis.com',
7575
projectIdRequired: false,
7676
service: 'speech',
7777
protoServices: {

system-test/speech.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ FILENAMES.forEach(function(filename) {
3939
name: name,
4040
path: path.join(__dirname, 'data/' + name),
4141
gcsUri: 'gs://' + BUCKET_NAME + '/' + name,
42-
httpUri: 'https://storage.googleapis.com./' + BUCKET_NAME + '/' + name
42+
httpUri: 'https://storage.googleapis.com/' + BUCKET_NAME + '/' + name
4343
};
4444
});
4545

test/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ describe('Speech', function() {
156156
var calledWith = speech.calledWith_[0];
157157

158158
assert.deepEqual(calledWith, {
159-
baseUrl: 'speech.googleapis.com.',
159+
baseUrl: 'speech.googleapis.com',
160160
projectIdRequired: false,
161161
service: 'speech',
162162
protoServices: {

0 commit comments

Comments
 (0)