|
37 | 37 | import java.io.IOException; |
38 | 38 | import java.net.URI; |
39 | 39 | import java.net.URISyntaxException; |
40 | | -import java.util.ArrayList; |
41 | 40 | import java.util.List; |
42 | 41 | import java.util.concurrent.TimeUnit; |
43 | 42 |
|
@@ -143,9 +142,6 @@ public void testCallRecordingAndTranscription() throws Exception { |
143 | 142 | CreateCallResponse callResponse = callsApi.createCall(BW_ACCOUNT_ID, createCallBody); |
144 | 143 | callId = callResponse.getCallId(); |
145 | 144 |
|
146 | | - System.out.println(testId); |
147 | | - System.out.println(callId); |
148 | | - |
149 | 145 | // Update Recording |
150 | 146 | TimeUnit.SECONDS.sleep(TEST_SLEEP * 2); |
151 | 147 | UpdateCallRecording updateRecording = new UpdateCallRecording(); |
@@ -185,9 +181,6 @@ public void testCallRecordingAndTranscription() throws Exception { |
185 | 181 | .listCallRecordingsWithHttpInfo(BW_ACCOUNT_ID, callId); |
186 | 182 | assertThat(listRecordingMetadataResponse.getStatusCode(), is(200)); |
187 | 183 | recordingId = listRecordingMetadataResponse.getData().get(0).getRecordingId(); |
188 | | - System.out.println("-----recordingId"); |
189 | | - System.out.println(recordingId); |
190 | | - System.out.println("-----"); |
191 | 184 |
|
192 | 185 | ApiResponse<CallRecordingMetadata> recordingMetadataResponse = recordingsApi.getCallRecordingWithHttpInfo( |
193 | 186 | BW_ACCOUNT_ID, callId, recordingId); |
@@ -284,11 +277,6 @@ public void testUnauthorizedGetRecording() { |
284 | 277 | Basic.setUsername("bad_username"); |
285 | 278 | Basic.setPassword("bad_password"); |
286 | 279 |
|
287 | | - System.out.println("----------"); |
288 | | - System.out.println(callId); |
289 | | - System.out.println(recordingId); |
290 | | - System.out.println("----------"); |
291 | | - |
292 | 280 | ApiException exception = Assertions.assertThrows(ApiException.class, |
293 | 281 | () -> recordingsApi.getCallRecording(BW_ACCOUNT_ID, callId, recordingId)); |
294 | 282 |
|
@@ -419,7 +407,6 @@ public void testForbiddenCreateTranscriptionRequest() { |
419 | 407 | () -> recordingsApi.transcribeCallRecording(BW_ACCOUNT_ID, callId, |
420 | 408 | recordingId, transcribeRecording)); |
421 | 409 |
|
422 | | - System.out.println(exception.getCode()); |
423 | 410 | assertThat(exception.getCode(), is(403)); |
424 | 411 | } |
425 | 412 |
|
|
0 commit comments