diff --git a/video-intelligence/system-test/analyze_face_detection.test.js b/video-intelligence/system-test/analyze_face_detection.test.js index 2172af94de..88505c42a9 100644 --- a/video-intelligence/system-test/analyze_face_detection.test.js +++ b/video-intelligence/system-test/analyze_face_detection.test.js @@ -26,6 +26,6 @@ const file = 'resources/googlework_short.mp4'; describe('analyzing faces in video', () => { it('should identify faces in a local file', async () => { const output = execSync(`${cmd} ${file}`); - assert.match(output, /glasses/); + assert.match(output, /Attribute/); }); }); diff --git a/video-intelligence/system-test/analyze_face_detection_gcs.test.js b/video-intelligence/system-test/analyze_face_detection_gcs.test.js index 4cd9ae6a3c..7e928509b8 100644 --- a/video-intelligence/system-test/analyze_face_detection_gcs.test.js +++ b/video-intelligence/system-test/analyze_face_detection_gcs.test.js @@ -26,6 +26,6 @@ const gcsUri = 'gs://cloud-samples-data/video/googlework_short.mp4'; describe('analyzing faces in video', () => { it('should identify faces in a file in Google Storage', async () => { const output = execSync(`${cmd} ${gcsUri}`); - assert.match(output, /glasses/); + assert.match(output, /Attribute/); }); }); diff --git a/video-intelligence/system-test/analyze_person_detection.test.js b/video-intelligence/system-test/analyze_person_detection.test.js index b802c3e1a6..6573049a6e 100644 --- a/video-intelligence/system-test/analyze_person_detection.test.js +++ b/video-intelligence/system-test/analyze_person_detection.test.js @@ -26,6 +26,6 @@ const file = 'resources/googlework_short.mp4'; describe('analyzing people in video', () => { it('should identify people in a local file', async () => { const output = execSync(`${cmd} ${file}`); - assert.match(output, /Hair/); + assert.match(output, /Landmark/); }); }); diff --git a/video-intelligence/system-test/analyze_person_detection_gcs.test.js b/video-intelligence/system-test/analyze_person_detection_gcs.test.js index 1f359bf925..68c8d1acac 100644 --- a/video-intelligence/system-test/analyze_person_detection_gcs.test.js +++ b/video-intelligence/system-test/analyze_person_detection_gcs.test.js @@ -26,6 +26,6 @@ const gcsUri = 'gs://cloud-samples-data/video/googlework_short.mp4'; describe('analyzing people in video', () => { it('should identify people in a file in Google Storage', async () => { const output = execSync(`${cmd} ${gcsUri}`); - assert.match(output, /Hair/); + assert.match(output, /Landmark/); }); });