Skip to content

Commit abfe996

Browse files
authored
[app-builder] fix compilation error (#325)
1 parent 5c73d90 commit abfe996

File tree

1 file changed

+4
-4
lines changed
  • app-builder/jane/plugins/aipp-plugin/src/test/java/modelengine/fit/jober/aipp/fitable

1 file changed

+4
-4
lines changed

app-builder/jane/plugins/aipp-plugin/src/test/java/modelengine/fit/jober/aipp/fitable/LlmComponentTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,8 @@ void shouldFailedWhenNoTool() throws InterruptedException {
243243
this.aippModelCenter,
244244
this.promptBuilderChain,
245245
this.appTaskInstanceService,
246-
this.mcpClientFactory,
247-
this.formatterChain);
246+
this.formatterChain,
247+
this.mcpClientFactory);
248248

249249
// mock
250250
CountDownLatch countDownLatch = mockFailAsyncJob(flowInstanceService);
@@ -409,8 +409,8 @@ private LlmComponent getLlmComponent(final AbstractAgent agent) {
409409
this.aippModelCenter,
410410
this.promptBuilderChain,
411411
this.appTaskInstanceService,
412-
this.mcpClientFactory,
413-
this.formatterChain);
412+
this.formatterChain,
413+
this.mcpClientFactory);
414414
}
415415

416416
private void prepareModel() {

0 commit comments

Comments
 (0)