This repository was archived by the owner on Sep 16, 2023. It is now read-only.
File tree 4 files changed +4
-4
lines changed
samples/snippets/src/test/java/com/example/video
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,6 @@ public void tearDown() {
45
45
public void testDetectFacesGcs () throws Exception {
46
46
DetectFacesGcs .detectFacesGcs ("gs://cloud-samples-data/video/googlework_short.mp4" );
47
47
String got = bout .toString ();
48
- assertThat (got ).contains ("glasses " );
48
+ assertThat (got ).contains ("Attribute " );
49
49
}
50
50
}
Original file line number Diff line number Diff line change @@ -46,6 +46,6 @@ public void tearDown() {
46
46
public void testDetectFaces () throws Exception {
47
47
DetectFaces .detectFaces ("resources/googlework_short.mp4" );
48
48
String got = bout .toString ();
49
- assertThat (got ).contains ("glasses " );
49
+ assertThat (got ).contains ("Attribute " );
50
50
}
51
51
}
Original file line number Diff line number Diff line change @@ -46,6 +46,6 @@ public void tearDown() {
46
46
public void testDetectPersonGcs () throws Exception {
47
47
DetectPersonGcs .detectPersonGcs ("gs://cloud-samples-data/video/googlework_short.mp4" );
48
48
String got = bout .toString ();
49
- assertThat (got ).contains ("Hair " );
49
+ assertThat (got ).contains ("Landmark " );
50
50
}
51
51
}
Original file line number Diff line number Diff line change @@ -46,6 +46,6 @@ public void tearDown() {
46
46
public void testDetectPerson () throws Exception {
47
47
DetectPerson .detectPerson ("resources/googlework_short.mp4" );
48
48
String got = bout .toString ();
49
- assertThat (got ).contains ("Hair " );
49
+ assertThat (got ).contains ("Landmark " );
50
50
}
51
51
}
You can’t perform that action at this time.
0 commit comments