File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/test/java/org/openapitools/client/api Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ public void testCreateAndFetchConference() throws Exception {
127127 .post (mantecaRequestBody )
128128 .build ();
129129 Call mantecaApiCall = mantecaClient .newCall (mantecaRequest );
130- testId = mantecaApiCall .execute ().body ().string (). replace ( " \" " , "" ) ;
130+ testId = mantecaApiCall .execute ().body ().string ();
131131 } catch (IOException e ) {
132132 System .out .println (e .toString ());
133133 throw new Exception ("Failed to initialize conference tests with Manteca, aborting test run :(" );
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ public void testCallRecordingAndTranscription() throws Exception {
126126 .post (mantecaRequestBody )
127127 .build ();
128128 Call mantecaApiCall = mantecaClient .newCall (mantecaRequest );
129- testId = mantecaApiCall .execute ().body ().string (). replace ( " \" " , "" ) ;
129+ testId = mantecaApiCall .execute ().body ().string ();
130130 } catch (IOException e ) {
131131 System .out .println (e .toString ());
132132 throw new Exception ("Failed to initialize conference tests with Manteca, aborting test run :(" );
You can’t perform that action at this time.
0 commit comments