Skip to content

Commit e48cff3

Browse files
committed
Remove unused imports
1 parent 7f0a9f5 commit e48cff3

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

app/backend/src/test/java/com/microsoft/openai/samples/rag/approaches/RAGApproachFactorySpringBootImplTest.java

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
package com.microsoft.openai.samples.rag.approaches;
22

3-
import com.microsoft.openai.samples.rag.approaches.RAGApproach;
4-
import com.microsoft.openai.samples.rag.approaches.RAGApproachFactorySpringBootImpl;
5-
import com.microsoft.openai.samples.rag.approaches.RAGType;
63
import com.microsoft.openai.samples.rag.ask.approaches.RetrieveThenReadApproach;
74
import com.microsoft.openai.samples.rag.ask.approaches.semantickernel.ReadRetrieveReadApproach;
85
import com.microsoft.openai.samples.rag.chat.approaches.ChatReadRetrieveReadApproach;
@@ -23,25 +20,19 @@ class RAGApproachFactorySpringBootImplTest {
2320

2421
@Test
2522
void testCreateApproachWithRetrieveThenRead() {
26-
2723
RAGApproach approach = ragApproachFactory.createApproach("rtr", RAGType.ASK);
2824
assertInstanceOf(RetrieveThenReadApproach.class, approach);
29-
3025
}
3126

3227
@Test
3328
void testCreateApproachWithChatReadRetrieveRead() {
34-
3529
RAGApproach approach = ragApproachFactory.createApproach("rrr", RAGType.ASK);
36-
3730
assertInstanceOf(ReadRetrieveReadApproach.class, approach);
3831
}
3932

4033
@Test
4134
void testChatCreateApproachWithChatReadRetrieveRead() {
42-
4335
RAGApproach approach = ragApproachFactory.createApproach("rrr", RAGType.CHAT);
44-
4536
assertInstanceOf(ChatReadRetrieveReadApproach.class, approach);
4637
}
4738

0 commit comments

Comments
 (0)