File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
vision/beta/cloud-client/src/test/java/com/example/vision Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,9 @@ public void testDetectHandwrittenOcr() throws Exception {
73
73
74
74
// Assert
75
75
String got = bout .toString ();
76
- assertThat (got ).contains ("Google Cloud Platform" );
76
+ assertThat (got ).contains ("Google" );
77
+ assertThat (got ).contains ("Cloud" );
78
+ assertThat (got ).contains ("Platform" );
77
79
}
78
80
79
81
@ Test
@@ -97,7 +99,9 @@ public void testDetectHandwrittenOcrGcs() throws Exception {
97
99
98
100
// Assert
99
101
String got = bout .toString ();
100
- assertThat (got ).contains ("Google Cloud Platform" );
102
+ assertThat (got ).contains ("Google" );
103
+ assertThat (got ).contains ("Cloud" );
104
+ assertThat (got ).contains ("Platform" );
101
105
}
102
106
103
107
@ Test
You can’t perform that action at this time.
0 commit comments