Skip to content

Commit 065d1c5

Browse files
committed
adjust test case to updated test project definition
1 parent 030ddf5 commit 065d1c5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

headless-services/spring-boot-language-server/src/test/java/org/springframework/ide/vscode/boot/java/commands/WorkspaceBootExecutableProjectsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ void multipleProjects() throws Exception {
112112
assertEquals("org.test.Application", execProject2.mainClass());
113113
assertEquals(project2.getLocationUri().toASCIIString(), execProject2.uri());
114114
assertEquals("com.example:test-spring-data-symbols:0.0.1-SNAPSHOT", execProject2.gav());
115-
assertEquals(44, execProject2.classpath().size());
115+
assertEquals(79, execProject2.classpath().size());
116116
assertTrue(execProject2.classpath().stream().map(path -> Path.of(path)).anyMatch(p -> p.endsWith("target/classes")));
117117
assertFalse(execProject2.classpath().stream().map(path -> Path.of(path)).anyMatch(p -> p.endsWith("target/test-classes")));
118118

headless-services/spring-boot-language-server/src/test/resources/test-projects/test-spring-data-symbols/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.springframework.boot</groupId>
1414
<artifactId>spring-boot-starter-parent</artifactId>
15-
<version>3.5.0</version>
15+
<version>3.5.5</version>
1616
<relativePath /> <!-- lookup parent from repository -->
1717
</parent>
1818

0 commit comments

Comments
 (0)