Skip to content

Commit 3b77120

Browse files
committed
Re-add test for existence of ID.
1 parent 8ca8feb commit 3b77120

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

sample-code/spring-app/src/test/java/com/sap/ai/sdk/app/controllers/OrchestrationTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ void testTemplate() {
6868
.isEqualTo("Reply with 'Orchestration Service is working!' in German");
6969
assertThat(result.getAllMessages().get(0).role()).isEqualTo("user");
7070
var llm = (LLMModuleResultSynchronous) response.getModuleResults().getLlm();
71+
assertThat(llm.getId()).isEmpty();
7172
assertThat(llm.getObject()).isEqualTo("chat.completion");
7273
assertThat(llm.getCreated()).isGreaterThan(1);
7374
assertThat(llm.getModel()).isEqualTo(modelName);

0 commit comments

Comments
 (0)