Skip to content

Commit f91a8cb

Browse files
Task: Update Tests for new Manteca Content Type. (#90)
1 parent 785d409 commit f91a8cb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 :(");

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 :(");

0 commit comments

Comments
 (0)