From d692b1c2fb5cdedb304c179135fe80680b832ff4 Mon Sep 17 00:00:00 2001 From: Luke Davis Date: Wed, 21 Apr 2021 14:36:30 -0700 Subject: [PATCH] Fix typo in path (#112) * Update create-custom-job.test.js Fix typo in path * Update create-custom-job.test.js * Update create-custom-job.test.js --- ai-platform/snippets/test/create-custom-job.test.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ai-platform/snippets/test/create-custom-job.test.js b/ai-platform/snippets/test/create-custom-job.test.js index f6dfdb062f..5bd73f90d6 100644 --- a/ai-platform/snippets/test/create-custom-job.test.js +++ b/ai-platform/snippets/test/create-custom-job.test.js @@ -25,7 +25,8 @@ const execSync = cmd => cp.execSync(cmd, {encoding: 'utf-8'}); const cwd = path.join(__dirname, '..'); const customJobDisplayName = `temp_create_custom_job_test${uuid()}`; -const containerImageUri = 'gcr.io/ucaip-test/ucaip-training-test:latest'; +const containerImageUri = + 'gcr.io/ucaip-sample-tests/ucaip-training-test:latest'; const project = process.env.CAIP_PROJECT_ID; const location = process.env.LOCATION;