Skip to content

Commit aeab38d

Browse files
[hotfix] Remove unnecessary space to improve the pass rate of ChatModelIntegrationTest (#355)
1 parent 00c7c3d commit aeab38d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

e2e-test/flink-agents-end-to-end-tests-integration/src/test/java/org/apache/flink/agents/integration/test/ChatModelIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public void testChatModeIntegration(String provider) throws Exception {
102102

103103
public void checkResult(CloseableIterator<Object> results) {
104104
List<String> expectedWords =
105-
List.of(" 77", "37", "89", "23", "68", "22", "26", "22", "23", "");
105+
List.of("77", "37", "89", "23", "68", "22", "26", "22", "23", "");
106106
for (String expected : expectedWords) {
107107
Assertions.assertTrue(
108108
results.hasNext(), "Output messages count %s is less than expected.");

0 commit comments

Comments
 (0)