Skip to content

Commit

Permalink
fix: bump min version of dependencies (#589)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeckwith authored and NimJay committed Nov 18, 2022
1 parent b12f0e7 commit 24cfb35
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions dialogflow/system-test/create-knowledge-base.v2beta1.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,7 @@ describe('create a knowledge base', () => {
const output = exec(`${cmd} -k ${testKnowledgeBaseName}`);
assert.include(output, `displayName: ${testKnowledgeBaseName}`);

knowledgeBaseName = output
.split('\n')[0]
.split(':')[1]
.trim();
knowledgeBaseName = output.split('\n')[0].split(':')[1].trim();
});

after('delete created knowledge base', async () => {
Expand Down

0 comments on commit 24cfb35

Please sign in to comment.