Skip to content

Commit

Permalink
test: address class ID error (#736)
Browse files Browse the repository at this point in the history
build: migrate to OwlBot
  • Loading branch information
b-loved-dreamer authored and Ace Nassri committed Nov 17, 2022
1 parent 25b9a21 commit 2fa090e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions speech/system-test/modelAdaptation.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ const adaptationClient = new speech.AdaptationClient();

const projectId = process.env.GCLOUD_PROJECT;
const location = 'us-west1'
const customClassId = uuidv4().replace(/-/g, '').substring(0, 20);
const phraseSetId = uuidv4().replace(/-/g, '').substring(0, 20);
const customClassId = uuidv4().replace(/-/g, '').substring(0, 15);
const phraseSetId = uuidv4().replace(/-/g, '').substring(0, 15);
const classParent = `projects/${projectId}/locations/${location}/customClasses/${customClassId}`;
const phraseParent = `projects/${projectId}/locations/${location}/phraseSets/${customClassId}`;

Expand Down

0 comments on commit 2fa090e

Please sign in to comment.