Skip to content

Commit 47908fb

Browse files
Formatting
1 parent 34c404c commit 47908fb

File tree

4 files changed

+4
-12
lines changed

4 files changed

+4
-12
lines changed

core/src/test/java/com/sap/ai/sdk/core/client/ArtifactUnitTest.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,9 +162,7 @@ void getArtifactCount() {
162162
aResponse()
163163
.withStatus(HttpStatus.SC_OK)
164164
.withHeader("content-type", "application/json")
165-
.withBody("""
166-
4
167-
""")));
165+
.withBody("4")));
168166

169167
val count = new ArtifactApi(aiCoreService).count("default");
170168

core/src/test/java/com/sap/ai/sdk/core/client/ConfigurationUnitTest.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,7 @@ void getConfigurationCount() {
140140
aResponse()
141141
.withStatus(HttpStatus.SC_OK)
142142
.withHeader("content-type", "application/json")
143-
.withBody("""
144-
3
145-
""")));
143+
.withBody("3")));
146144

147145
val configurationCount = new ConfigurationApi(aiCoreService).count("default");
148146

core/src/test/java/com/sap/ai/sdk/core/client/DeploymentUnitTest.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -337,9 +337,7 @@ void getDeploymentCount() {
337337
aResponse()
338338
.withStatus(HttpStatus.SC_OK)
339339
.withHeader("content-type", "application/json")
340-
.withBody("""
341-
1
342-
""")));
340+
.withBody("1")));
343341

344342
val count = new DeploymentApi(aiCoreService).count("default");
345343

core/src/test/java/com/sap/ai/sdk/core/client/ExecutionUnitTest.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -293,9 +293,7 @@ void getExecutionCount() {
293293
aResponse()
294294
.withStatus(HttpStatus.SC_OK)
295295
.withHeader("content-type", "application/json")
296-
.withBody("""
297-
1
298-
""")));
296+
.withBody("1")));
299297

300298
val count = new ExecutionApi(aiCoreService).count("default");
301299

0 commit comments

Comments
 (0)