Skip to content

Commit 1707983

Browse files
committed
Cleanup + remove debugging statements
1 parent 4049330 commit 1707983

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

src/test/java/org/openapitools/client/api/RecordingsApiTest.java

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
import java.io.IOException;
3838
import java.net.URI;
3939
import java.net.URISyntaxException;
40-
import java.util.ArrayList;
4140
import java.util.List;
4241
import java.util.concurrent.TimeUnit;
4342

@@ -143,9 +142,6 @@ public void testCallRecordingAndTranscription() throws Exception {
143142
CreateCallResponse callResponse = callsApi.createCall(BW_ACCOUNT_ID, createCallBody);
144143
callId = callResponse.getCallId();
145144

146-
System.out.println(testId);
147-
System.out.println(callId);
148-
149145
// Update Recording
150146
TimeUnit.SECONDS.sleep(TEST_SLEEP * 2);
151147
UpdateCallRecording updateRecording = new UpdateCallRecording();
@@ -185,9 +181,6 @@ public void testCallRecordingAndTranscription() throws Exception {
185181
.listCallRecordingsWithHttpInfo(BW_ACCOUNT_ID, callId);
186182
assertThat(listRecordingMetadataResponse.getStatusCode(), is(200));
187183
recordingId = listRecordingMetadataResponse.getData().get(0).getRecordingId();
188-
System.out.println("-----recordingId");
189-
System.out.println(recordingId);
190-
System.out.println("-----");
191184

192185
ApiResponse<CallRecordingMetadata> recordingMetadataResponse = recordingsApi.getCallRecordingWithHttpInfo(
193186
BW_ACCOUNT_ID, callId, recordingId);
@@ -284,11 +277,6 @@ public void testUnauthorizedGetRecording() {
284277
Basic.setUsername("bad_username");
285278
Basic.setPassword("bad_password");
286279

287-
System.out.println("----------");
288-
System.out.println(callId);
289-
System.out.println(recordingId);
290-
System.out.println("----------");
291-
292280
ApiException exception = Assertions.assertThrows(ApiException.class,
293281
() -> recordingsApi.getCallRecording(BW_ACCOUNT_ID, callId, recordingId));
294282

@@ -419,7 +407,6 @@ public void testForbiddenCreateTranscriptionRequest() {
419407
() -> recordingsApi.transcribeCallRecording(BW_ACCOUNT_ID, callId,
420408
recordingId, transcribeRecording));
421409

422-
System.out.println(exception.getCode());
423410
assertThat(exception.getCode(), is(403));
424411
}
425412

0 commit comments

Comments
 (0)