Skip to content

Commit

Permalink
test: correct pi v3 adapter test
Browse files Browse the repository at this point in the history
  • Loading branch information
dpopp07 committed Jan 7, 2019
1 parent c836ebb commit 03a3930
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/integration/adapter.personality_insights.v3.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ const TWENTY_SECONDS = 20000;
describe('personality_insights_v3_adapter_integration', function() {
jest.setTimeout(TWENTY_SECONDS);
const mobydick = fs.readFileSync(path.join(__dirname, '../resources/mobydick.txt'), 'utf8');
auth.personality_insights.v3.version = 'v3';
auth.personality_insights.v3.version_date = '2016-10-19';
const personality_insights = watson.personality_insights(auth.personality_insights.v3);
auth.personality_insights.version = 'v3';
auth.personality_insights.version_date = '2016-10-19';
const personality_insights = watson.personality_insights(auth.personality_insights);

it('profile()', function(done) {
const params = {
Expand Down

0 comments on commit 03a3930

Please sign in to comment.