diff --git a/src/test/java/org/openapitools/client/api/ConferencesApiTest.java b/src/test/java/org/openapitools/client/api/ConferencesApiTest.java index 7f586c7a..e7f8e03c 100644 --- a/src/test/java/org/openapitools/client/api/ConferencesApiTest.java +++ b/src/test/java/org/openapitools/client/api/ConferencesApiTest.java @@ -127,7 +127,7 @@ public void testCreateAndFetchConference() throws Exception { .post(mantecaRequestBody) .build(); Call mantecaApiCall = mantecaClient.newCall(mantecaRequest); - testId = mantecaApiCall.execute().body().string().replace("\"", ""); + testId = mantecaApiCall.execute().body().string(); } catch (IOException e) { System.out.println(e.toString()); throw new Exception("Failed to initialize conference tests with Manteca, aborting test run :("); diff --git a/src/test/java/org/openapitools/client/api/RecordingsApiTest.java b/src/test/java/org/openapitools/client/api/RecordingsApiTest.java index 5825516b..50e0756b 100644 --- a/src/test/java/org/openapitools/client/api/RecordingsApiTest.java +++ b/src/test/java/org/openapitools/client/api/RecordingsApiTest.java @@ -126,7 +126,7 @@ public void testCallRecordingAndTranscription() throws Exception { .post(mantecaRequestBody) .build(); Call mantecaApiCall = mantecaClient.newCall(mantecaRequest); - testId = mantecaApiCall.execute().body().string().replace("\"", ""); + testId = mantecaApiCall.execute().body().string(); } catch (IOException e) { System.out.println(e.toString()); throw new Exception("Failed to initialize conference tests with Manteca, aborting test run :(");