Skip to content

Commit 43b2927

Browse files
committed
Remove integration test superclass
1 parent 1b69b5b commit 43b2927

2 files changed

Lines changed: 2 additions & 141 deletions

File tree

src/test/java/com/embabel/agent/testing/integration/EmbabelMockitoIntegrationTest.java

Lines changed: 0 additions & 139 deletions
This file was deleted.

src/test/java/com/embabel/template/agent/WriteAndReviewAgentIntegrationTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* This will run under Spring Boot against an AgentPlatform instance
1414
* that has loaded all our agents.
1515
*/
16-
class StoryWriterIntegrationTest extends EmbabelMockitoIntegrationTest {
16+
class WriteAndReviewAgentIntegrationTest extends EmbabelMockitoIntegrationTest {
1717

1818
@Test
1919
void shouldExecuteCompleteWorkflow() {
@@ -39,7 +39,7 @@ void shouldExecuteCompleteWorkflow() {
3939
"Expected review to match: " + reviewedStoryResult);
4040

4141
verifyCreateObjectMatching(prompt -> prompt.contains("Craft a short story"), Story.class,
42-
llm -> llm.getLlm().getTemperature() == 0.9 && llm.getToolGroups().isEmpty());
42+
llm -> llm.getLlm().getTemperature() == 0.7 && llm.getToolGroups().isEmpty());
4343
verifyGenerateTextMatching(prompt -> prompt.contains("You will be given a short story to review"));
4444
verifyNoMoreInteractions();
4545
}

0 commit comments

Comments
 (0)