Skip to content

Commit 8907c33

Browse files
committed
Add debugging statement
1 parent 19035c1 commit 8907c33

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

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

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,13 +139,13 @@ public void testCallRecordingAndTranscription() throws Exception {
139139
createCallBody.setAnswerUrl(answerUrl);
140140
createCallBody.setTag(testId);
141141

142-
System.out.println(testId);
143-
144142
// Create Call
145143
CreateCallResponse callResponse = callsApi.createCall(BW_ACCOUNT_ID, createCallBody);
146-
System.out.println(callResponse.getCallId());
147144
callId = callResponse.getCallId();
148145

146+
System.out.println(testId);
147+
System.out.println(callId);
148+
149149
// Update Recording
150150
TimeUnit.SECONDS.sleep(TEST_SLEEP);
151151
UpdateCallRecording updateRecording = new UpdateCallRecording();
@@ -281,6 +281,11 @@ public void testUnauthorizedGetRecording() {
281281
Basic.setUsername("bad_username");
282282
Basic.setPassword("bad_password");
283283

284+
System.out.println("----------");
285+
System.out.println(callId);
286+
System.out.println(recordingId);
287+
System.out.println("----------");
288+
284289
ApiException exception = Assertions.assertThrows(ApiException.class,
285290
() -> recordingsApi.getCallRecording(BW_ACCOUNT_ID, callId, recordingId));
286291

0 commit comments

Comments
 (0)