Skip to content

Commit

Permalink
fix: use unique name for sample test knowledge base (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeckwith authored Oct 26, 2018
1 parent 314b034 commit 5263b15
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions dialogflow/system-test/detect.v2beta1.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,11 @@

const test = require(`ava`);
const {runAsync} = require('@google-cloud/nodejs-repo-tools');
const uuid = require('uuid/v4');

const cmd = 'node detect.v2beta1.js';
const testQuery = `Where is my data stored?`;

const testKnowledgeBaseName = 'TestKnowledgeBase';

const testKnowledgeBaseName = `${uuid().split('-')[0]}-TestKnowledgeBase`;
const testDocName = `TestDoc`;
const testDocumentPath = `https://cloud.google.com/storage/docs/faq`;

Expand Down

0 comments on commit 5263b15

Please sign in to comment.