File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
src/test/java/org/openapitools/client/api Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments