Skip to content

Commit c6ae6ae

Browse files
committed
lint fixes
1 parent 60b7a2f commit c6ae6ae

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 2.14.7
1+
# 2.14.8
22
* Fix DocumentConversion#convert() to accept config params as documented in api ref
33
* Fix param checking on various TTS customization methods
44

test/integration/test.text_to_speech.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ describe('text_to_speech_integration', function() {
6464
text_to_speech.createCustomization({
6565
name: 'temporary-node-sdk-test',
6666
language: 'en-US',
67-
description: 'Created by Node.js SDK integration tests on ' + (new Date) + '. Should be automatically deleted within 10 minutes.'
67+
description: 'Created by Node.js SDK integration tests on ' + (new Date()) + '. Should be automatically deleted within 10 minutes.'
6868
}, function(err, response) {
69-
console.log(JSON.stringify(err || response, null, 2));
69+
//console.log(JSON.stringify(err || response, null, 2));
7070
if (err) {
7171
return done(err);
7272
}
@@ -135,7 +135,7 @@ describe('text_to_speech_integration', function() {
135135
});
136136

137137
it('getWord()', function(done) {
138-
text_to_speech.getWord({customization_id, word: 'NCAA'}, function(err, response) {
138+
text_to_speech.getWord({customization_id: customization_id, word: 'NCAA'}, function(err, response) {
139139
if (err) {
140140
return done(err);
141141
}

0 commit comments

Comments
 (0)