Skip to content

Commit

Permalink
build(node_library): migrate to Trampoline V2 (#456)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation authored and Ace Nassri committed Nov 15, 2022
1 parent 8eeb414 commit 3ef1ae5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion automl/test/automlTablesPredict.v1beta1.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const {execSync} = require('child_process');

/** Tests for AutoML Tables "Prediction API" sample. */

const projectId = process.env.AUTOML_PROJECT_ID;
const projectId = process.env.AUTOML_PROJECT_ID || 'cdpe-automl-tests';
const region = 'us-central1';
const modelId = process.env.TABLE_MODEL_ID;
const gcsInputUri = `gs://${projectId}-tables/predictTest.csv`;
Expand Down
2 changes: 1 addition & 1 deletion automl/test/automlTranslation.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const cmdDataset = 'node translate/automlTranslateCreateDataset.js';
const cmdModel = 'node translate/automlTranslateCreateModel.js';
const cmdPredict = 'node translate/automlTranslatePredict.js';

const projectId = process.env.AUTOML_PROJECT_ID;
const projectId = process.env.AUTOML_PROJECT_ID || 'cdpe-automl-tests';
const datasetId = process.env.TRANSLATION_DATASET_ID;
const modelId = process.env.TRANSLATION_MODEL_ID;

Expand Down

0 comments on commit 3ef1ae5

Please sign in to comment.