File tree 1 file changed +6
-6
lines changed
speech/cloud-client/src/test/java/com/example/speech
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -113,22 +113,22 @@ public void testStreamRecognize() throws Exception {
113
113
@ Test
114
114
public void testAutoPunctuation () throws Exception {
115
115
Recognize .transcribeFileWithAutomaticPunctuation (audioFileName );
116
- String got = bout .toString (). toLowerCase () ;
117
- assertThat (got ).contains ("how old is the brooklyn bridge " );
116
+ String got = bout .toString ();
117
+ assertThat (got ).contains ("How old is the Brooklyn Bridge? " );
118
118
}
119
119
120
120
@ Test
121
121
public void testGcsAutoPunctuation () throws Exception {
122
122
Recognize .transcribeGcsWithAutomaticPunctuation (gcsAudioPath );
123
- String got = bout .toString (). toLowerCase () ;
124
- assertThat (got ).contains ("how old is the brooklyn bridge " );
123
+ String got = bout .toString ();
124
+ assertThat (got ).contains ("How old is the Brooklyn Bridge? " );
125
125
}
126
126
127
127
@ Test
128
128
public void testStreamAutoPunctuation () throws Exception {
129
129
Recognize .streamingTranscribeWithAutomaticPunctuation (audioFileName );
130
- String got = bout .toString (). toLowerCase () ;
131
- assertThat (got ).contains ("how old is the brooklyn bridge " );
130
+ String got = bout .toString ();
131
+ assertThat (got ).contains ("How old is the Brooklyn Bridge? " );
132
132
}
133
133
134
134
@ Test
You can’t perform that action at this time.
0 commit comments