From 3e2af76936a9096df31df561724cc7f2c7ebee5b Mon Sep 17 00:00:00 2001 From: I538344 Date: Fri, 11 Jul 2025 08:48:05 +0200 Subject: [PATCH] chore: [DevOps] fix e2e test --- .../java/com/sap/ai/sdk/app/controllers/OrchestrationTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sample-code/spring-app/src/test/java/com/sap/ai/sdk/app/controllers/OrchestrationTest.java b/sample-code/spring-app/src/test/java/com/sap/ai/sdk/app/controllers/OrchestrationTest.java index e79da52ec..3bf5d45a0 100644 --- a/sample-code/spring-app/src/test/java/com/sap/ai/sdk/app/controllers/OrchestrationTest.java +++ b/sample-code/spring-app/src/test/java/com/sap/ai/sdk/app/controllers/OrchestrationTest.java @@ -230,7 +230,7 @@ void testInputFilteringLenient() { assertThat(response.getContent()).isNotEmpty(); var filterResult = response.getOriginalResponse().getModuleResults().getInputFiltering(); - assertThat(filterResult.getMessage()).contains("skipped"); + assertThat(filterResult.getMessage()).contains("passed"); // prompt shield is a filter } @Test