Skip to content

Commit 50971c0

Browse files
authored
Merge pull request #783 from watson-developer-cloud/drp/readme-typo
fix typo in assistant v2 example
2 parents b4532b0 + dba0da1 commit 50971c0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ Use the [Assistant][conversation] service to determine the intent of a message.
302302
Note: You must first create a workspace via IBM Cloud. See [the documentation](https://console.bluemix.net/docs/services/conversation/index.html#about) for details.
303303

304304
```js
305-
var AssistantV1 = require('watson-developer-cloud/assistant/v1');
305+
var AssistantV2 = require('watson-developer-cloud/assistant/v2');
306306

307307
var assistant = new AssistantV2({
308308
username: '<username>',

test/integration/test.visual_recognition.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ describe('visual_recognition_integration', function() {
2020

2121
before(function() {
2222
visual_recognition = new watson.VisualRecognitionV3(
23-
Object.assign({}, auth.visual_recognition.v3, {
24-
version: '2018-03-19',
23+
Object.assign({}, auth.visual_recognition_rc.v3, {
24+
version: '2018-10-01',
2525
})
2626
);
2727
nock.enableNetConnect();

0 commit comments

Comments
 (0)