Skip to content

Commit 548cf82

Browse files
committed
style: apply spring-javaformat to fix formatting violations
Signed-off-by: liugddx <[email protected]>
1 parent 58ed2e7 commit 548cf82

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

spring-ai-model/src/test/java/org/springframework/ai/converter/BeanOutputConverterTest.java

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -250,12 +250,12 @@ void convertWithThinkingTags() {
250250
void convertWithThinkingTagsMultiline() {
251251
var converter = new BeanOutputConverter<>(TestClass.class);
252252
String textWithThinkingTags = """
253-
<thinking>
254-
This is my reasoning process
255-
spanning multiple lines
256-
</thinking>
257-
{ "someString": "some value" }
258-
""";
253+
<thinking>
254+
This is my reasoning process
255+
spanning multiple lines
256+
</thinking>
257+
{ "someString": "some value" }
258+
""";
259259
var testClass = converter.convert(textWithThinkingTags);
260260
assertThat(testClass.getSomeString()).isEqualTo("some value");
261261
}
@@ -264,11 +264,11 @@ void convertWithThinkingTagsMultiline() {
264264
void convertWithThinkingTagsAndMarkdownCodeBlock() {
265265
var converter = new BeanOutputConverter<>(TestClass.class);
266266
String textWithThinkingTags = """
267-
<thinking>This is my reasoning process...</thinking>
268-
```json
269-
{ "someString": "some value" }
270-
```
271-
""";
267+
<thinking>This is my reasoning process...</thinking>
268+
```json
269+
{ "someString": "some value" }
270+
```
271+
""";
272272
var testClass = converter.convert(textWithThinkingTags);
273273
assertThat(testClass.getSomeString()).isEqualTo("some value");
274274
}

0 commit comments

Comments
 (0)