Skip to content

Commit 10c715b

Browse files
committed
Fix test method name
1 parent 5430c52 commit 10c715b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sample-code/spring-app/src/test/java/com/sap/ai/sdk/app/controllers/GroundingTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class GroundingTest {
2424
private static final String JSON_FORMAT = "json";
2525

2626
@Test
27-
void getPipelinesGetAll() {
27+
void testPipelinesGetAll() {
2828
final var controller = new GroundingController();
2929

3030
final var result = controller.getAllPipelines(JSON_FORMAT);
@@ -38,7 +38,7 @@ void getPipelinesGetAll() {
3838
}
3939

4040
@Test
41-
void getRepositoriesGetAll() {
41+
void testRepositoriesGetAll() {
4242
final var controller = new GroundingController();
4343

4444
final var result = controller.getAllRepositories(JSON_FORMAT);

0 commit comments

Comments
 (0)